System.Xml.Xsl.XsltOld.ReaderOutput.GetAttribute C# (CSharp) Method

GetAttribute() public method

public GetAttribute ( string localName, string namespaceURI ) : string
localName string
namespaceURI string
return string
        public override string GetAttribute(string localName, string namespaceURI) {
            int ordinal;
            if (FindAttribute(localName, namespaceURI, out ordinal)) {
                Debug.Assert(ordinal >= 0);
                return((BuilderInfo)this.attributeList[ordinal]).Value;
            }
            else {
                Debug.Assert(ordinal == -1);
                return null;
            }
        }

Same methods

ReaderOutput::GetAttribute ( int i ) : string
ReaderOutput::GetAttribute ( string name ) : string