Appccelerate.IO.Streams.StreamDecoratorStream.EndRead C# (CSharp) Method

EndRead() public method

Waits for the pending asynchronous read to complete.
asyncResult did not originate from a /// /// method on the current stream. asyncResult is null. Thrown when no stream is assigned as decorated stream. ///
public EndRead ( IAsyncResult asyncResult ) : int
asyncResult IAsyncResult The reference to the pending asynchronous request to finish.
return int
        public override int EndRead(IAsyncResult asyncResult)
        {
            this.AssertStreamNotNull();
            return this.decoratedStream.EndRead(asyncResult);
        }