erminas.SmartAPI.CMS.XmlReadWriteWrapper.GetAttributeValue C# (CSharp) Method

GetAttributeValue() public method

public GetAttributeValue ( string attributeName ) : string
attributeName string
return string
        public string GetAttributeValue(string attributeName)
        {
            string value;
            if (_writtenValues.TryGetValue(attributeName, out value) ||
                _basisOverrides.TryGetValue(attributeName, out value))
            {
                return value;
            }

            return _readElement.GetAttributeValue(attributeName);
        }