Calyptus.Lob.StreamBlob.BlobStream.ReadByte C# (CSharp) Method

ReadByte() public method

public ReadByte ( ) : int
return int
			public override int ReadByte()
			{
				ThrowClosed();
				var i = blob.stream.ReadByte();
				blob.needRestart = true;
				return i;
			}