Commit 9832426071c21aa71e213083d4f7089ecf414def
1 parent
eca32da4
v1.11.5
- KeyGroups elem bevezetése
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
Vrh.Log4Pro.MaintenanceConsole/Manager - WindowsServiceManager.cs
... | ... | @@ -1008,9 +1008,9 @@ namespace Vrh.Log4Pro.MaintenanceConsole.WindowsServiceManagerNS |
1008 | 1008 | } |
1009 | 1009 | public KeyGroup(XElement keygroupxml) |
1010 | 1010 | { |
1011 | - Xml_Key = GetValue(nameof(XmlStructure.KeyGroup.Attributes.Key), keygroupxml, XmlStructure.KeyGroup.Attributes.Key.Values.DEFAULT); | |
1012 | - Xml_Description = GetValue(nameof(XmlStructure.KeyGroup.Attributes.Description), keygroupxml, XmlStructure.KeyGroup.Attributes.Description.Values.DEFAULT); | |
1013 | - var keycommaliststring = GetValue(nameof(XmlStructure.KeyGroup.Attributes.KeyList), keygroupxml, XmlStructure.KeyGroup.Attributes.KeyList.Values.DEFAULT); | |
1011 | + Xml_Key = GetValue(nameof(XmlStructure.KeyGroups.KeyGroup.Attributes.Key), keygroupxml, XmlStructure.KeyGroups.KeyGroup.Attributes.Key.Values.DEFAULT); | |
1012 | + Xml_Description = GetValue(nameof(XmlStructure.KeyGroups.KeyGroup.Attributes.Description), keygroupxml, XmlStructure.KeyGroups.KeyGroup.Attributes.Description.Values.DEFAULT); | |
1013 | + var keycommaliststring = GetValue(nameof(XmlStructure.KeyGroups.KeyGroup.Attributes.KeyList), keygroupxml, XmlStructure.KeyGroups.KeyGroup.Attributes.KeyList.Values.DEFAULT); | |
1014 | 1014 | Valid = false; |
1015 | 1015 | if (!string.IsNullOrWhiteSpace(keycommaliststring)) |
1016 | 1016 | { | ... | ... |