Bloom.ElementProxy.GetAttribute C# (CSharp) Method

GetAttribute() public method

Gets the named attribute
public GetAttribute ( string attributeName ) : string
attributeName string
return string
        public string GetAttribute(string attributeName)
        {
            if (_xmlElement == null)
            {
                return _geckoElement.GetAttribute(attributeName);
            }
            else
            {
                return _xmlElement.GetAttribute(attributeName);
            }
        }