Appccelerate.IO.Streams.StreamDecoratorStream.EndWrite C# (CSharp) Метод

EndWrite() публичный Метод

Ends an asynchronous write operation.
asyncResult is null. asyncResult did not originate from a /// /// method on the current stream. Thrown when no stream is assigned as decorated stream. ///
public EndWrite ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult A reference to the outstanding asynchronous I/O request.
Результат void
        public override void EndWrite(IAsyncResult asyncResult)
        {
            this.AssertStreamNotNull();
            this.decoratedStream.EndWrite(asyncResult);
        }