AgGateway.ADAPT.ISOv4Plugin.Readers.TsksReader.GetEnumValue C# (CSharp) Method

GetEnumValue() private method

private GetEnumValue ( XPathNavigator node, string attributeName ) : TSKG
node System.Xml.XPath.XPathNavigator
attributeName string
return TSKG
        private TSKG GetEnumValue(XPathNavigator node, string attributeName)
        {
            var value = node.GetAttribute(attributeName, node.NamespaceURI);

            TSKG outValue;
            Enum.TryParse(value, out outValue);
            return outValue;
        }