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

ReadContentAsInt() private method

private ReadContentAsInt ( ) : int
return int
        internal int ReadContentAsInt()
        {
            if (isEndOfEmptyElement)
                ThrowConversionException(string.Empty, "Int32");

            return reader.ReadContentAsInt();
        }
XmlReaderDelegator.XmlReaderDelegator