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

GetAttribute() private method

private GetAttribute ( int i ) : string
i int
return string
        internal string GetAttribute(int i)
        {
            if (isEndOfEmptyElement)
                throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException(nameof(i), SR.Format(SR.XmlElementAttributes)));
            return reader.GetAttribute(i);
        }

Same methods

XmlReaderDelegator.XmlReaderDelegator::GetAttribute ( string name ) : string
XmlReaderDelegator.XmlReaderDelegator::GetAttribute ( string name, string namespaceUri ) : string
XmlReaderDelegator.XmlReaderDelegator