System.Runtime.Serialization.XmlReaderDelegator.XmlReaderDelegator.GetAttribute C# (CSharp) 메소드

GetAttribute() 개인적인 메소드

private GetAttribute ( int i ) : string
i int
리턴 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