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

BeginRead() public method

public BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state object
return IAsyncResult
			public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
			{
				ThrowClosed();
				blob.needRestart = true;
				return blob.stream.BeginRead(buffer, offset, count, callback, state);
			}