Table of Contents

Class DelegatingStream

Namespace
MongoDB.Driver.GridFS
Assembly
MongoDB.Driver.GridFS.dll

Represents a Stream that delegates all of its operations to a wrapped Stream.

public class DelegatingStream : Stream, IDisposable
Inheritance
DelegatingStream
Implements
Derived
Inherited Members

Properties

CanRead
CanSeek
CanTimeout
CanWrite
Length
Position
ReadTimeout
WriteTimeout

Methods

BeginRead(byte[], int, int, AsyncCallback, object)
BeginWrite(byte[], int, int, AsyncCallback, object)
Close()
CopyToAsync(Stream, int, CancellationToken)
CreateWaitHandle()
Dispose(bool)
EndRead(IAsyncResult)
EndWrite(IAsyncResult)
Equals(object)
Flush()
FlushAsync(CancellationToken)
GetHashCode()
Read(byte[], int, int)
ReadAsync(byte[], int, int, CancellationToken)
ReadByte()
Seek(long, SeekOrigin)
SetLength(long)
ToString()
Write(byte[], int, int)
WriteAsync(byte[], int, int, CancellationToken)
WriteByte(byte)

See Also