Class MongoGridFSStream
Represents a stream interface to a GridFS file (patterned after .NET's Stream class).
public class MongoGridFSStream : Stream, IDisposable
- Inheritance
-
MongoGridFSStream
- Implements
- Inherited Members
- Extension Methods
Constructors
MongoGridFSStream(MongoGridFSFileInfo, FileMode)
Initializes a new instance of the MongoGridFSStream class.
public MongoGridFSStream(MongoGridFSFileInfo fileInfo, FileMode mode)
Parameters
fileInfo
MongoGridFSFileInfoThe GridFS file info.
mode
FileModeThe mode.
MongoGridFSStream(MongoGridFSFileInfo, FileMode, FileAccess)
Initializes a new instance of the MongoGridFSStream class.
public MongoGridFSStream(MongoGridFSFileInfo fileInfo, FileMode mode, FileAccess access)
Parameters
fileInfo
MongoGridFSFileInfoThe GridFS file info.
mode
FileModeThe mode.
access
FileAccessThe acess.
Properties
CanRead
Gets whether the GridFS stream supports reading.
public override bool CanRead { get; }
Property Value
CanSeek
Gets whether the GridFS stream supports seeking.
public override bool CanSeek { get; }
Property Value
CanWrite
Gets whether the GridFS stream supports writing.
public override bool CanWrite { get; }
Property Value
Length
Gets the current length (use SetLength to change the length).
public override long Length { get; }
Property Value
Position
Gets or sets the current position.
public override long Position { get; set; }
Property Value
UpdateMD5
Gets or sets a value indicating whether to compute and update the MD5 hash for the file when the stream is closed.
[Obsolete("Use UpdateMD5 on MongoGridFSSettings instead.")]
public bool UpdateMD5 { get; set; }
Property Value
Methods
Dispose(bool)
Disposes of any resources used by the stream.
protected override void Dispose(bool disposing)
Parameters
disposing
boolTrue if called from Dispose.
Flush()
Flushes any unsaved data in the buffers to the GridFS file.
public override void Flush()
Read(byte[], int, int)
Reads bytes from the GridFS stream.
public override int Read(byte[] buffer, int offset, int count)
Parameters
buffer
byte[]The destination buffer.
offset
intThe offset in the destination buffer at which to place the read bytes.
count
intThe number of bytes to read.
Returns
- int
The number of bytes read.
ReadByte()
Reads one byte from the GridFS stream.
public override int ReadByte()
Returns
- int
The byte (-1 if at the end of the GridFS stream).
Seek(long, SeekOrigin)
Seeks to a new position.
public override long Seek(long offset, SeekOrigin origin)
Parameters
offset
longThe seek offset.
origin
SeekOriginThe seek origin.
Returns
- long
The new position.
SetLength(long)
Sets the length of the GridFS file.
public override void SetLength(long value)
Parameters
value
longThe length.
Write(byte[], int, int)
Writes bytes to the GridFS stream.
public override void Write(byte[] buffer, int offset, int count)
Parameters
buffer
byte[]The source buffer.
offset
intThe offset in the source buffer to the bytes.
count
intThe number of bytes to write.
WriteByte(byte)
Writes one byte to the GridFS stream.
public override void WriteByte(byte value)
Parameters
value
byteThe byte.