Microsoft.Language.Xml.XmlDocumentSyntax.this C# (CSharp) Method

this() public method

public this ( string attributeName ) : string
attributeName string
return string
        public string this[string attributeName]
        {
            get
            {
                if (Root == null)
                {
                    return null;
                }

                return Root[attributeName];
            }
        }