DBus.Unix.UnixStream.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
		unsafe public override int ReadByte ()
		{
			byte value;
			usock.Read (&value, 1);
			return value;
		}