BKSystem.IO.BitStream.EndWrite C# (CSharp) Метод

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

Ends an asynchronous write operation.
Notes to Callers: This method is not supported, and cannot be used. Asynchronous operations are not supported by the BitStream class.
/// This method is not supported. ///
public EndWrite ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult /// A reference to the outstanding asynchronous I/O request. ///
Результат void
        public override void EndWrite(IAsyncResult asyncResult)
        {
            throw new NotSupportedException(BitStreamResources.GetString("NotSupported_AsyncOps"));
        }