System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.GetAttribute C# (CSharp) Method

GetAttribute() private method

private GetAttribute ( string name, string namespaceUri ) : string
name string
namespaceUri string
return string
        internal string GetAttribute(string name, string namespaceUri)
        {
            return isEndOfEmptyElement ? null : reader.GetAttribute(name, namespaceUri);
        }

Same methods

XmlReaderDelegator.XmlReaderDelegator::GetAttribute ( int i ) : string
XmlReaderDelegator.XmlReaderDelegator::GetAttribute ( string name ) : string
XmlReaderDelegator.XmlReaderDelegator