System.Xml.XmlBinaryDictionaryReader.StreamSource.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
			public int ReadByte ()
			{
				if (reader.PeekChar () < 0)
					return -1;
				return reader.ReadByte ();
			}
XmlBinaryDictionaryReader.StreamSource