Click or drag to resize
BsonBinaryWriter Class
Represents a BSON writer to a BSON Stream.
Inheritance Hierarchy

Namespace: MongoDB.Bson.IO
Assembly: MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.0.1
Syntax
public class BsonBinaryWriter : BsonWriter

The BsonBinaryWriter type exposes the following members.

Constructors
  NameDescription
Public methodBsonBinaryWriter(Stream)
Initializes a new instance of the BsonBinaryWriter class.
Public methodBsonBinaryWriter(Stream, BsonBinaryWriterSettings)
Initializes a new instance of the BsonBinaryWriter class.
Top
Methods
  NameDescription
Public methodClose
Closes the writer. Also closes the base stream.
(Overrides BsonWriter.Close().)
Public methodDispose()
Disposes of any resources used by the writer.
(Inherited from BsonWriter.)
Protected methodDispose(Boolean)
Disposes of any resources used by the writer.
(Overrides BsonWriter.Dispose(Boolean).)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFlush
Flushes any pending data to the output destination.
(Overrides BsonWriter.Flush().)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPopElementNameValidator
Pops the element name validator.
(Inherited from BsonWriter.)
Public methodPopMaxDocumentSize
Pops the max document size stack, restoring the previous max document size.
Public methodPushElementNameValidator
Pushes the element name validator.
(Inherited from BsonWriter.)
Public methodPushMaxDocumentSize
Pushes a new max document size onto the max document size stack.
Protected methodThrowInvalidContextType
Throws an InvalidOperationException when the method called is not valid for the current ContextType.
(Inherited from BsonWriter.)
Protected methodThrowInvalidState
Throws an InvalidOperationException when the method called is not valid for the current state.
(Inherited from BsonWriter.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWriteBinaryData
Writes BSON binary data to the writer.
(Overrides BsonWriter.WriteBinaryData(BsonBinaryData).)
Public methodWriteBoolean
Writes a BSON Boolean to the writer.
(Overrides BsonWriter.WriteBoolean(Boolean).)
Public methodWriteBytes
Writes BSON binary data to the writer.
(Overrides BsonWriter.WriteBytes(Byte[]).)
Public methodWriteDateTime
Writes a BSON DateTime to the writer.
(Overrides BsonWriter.WriteDateTime(Int64).)
Public methodWriteDouble
Writes a BSON Double to the writer.
(Overrides BsonWriter.WriteDouble(Double).)
Public methodWriteEndArray
Writes the end of a BSON array to the writer.
(Overrides BsonWriter.WriteEndArray().)
Public methodWriteEndDocument
Writes the end of a BSON document to the writer.
(Overrides BsonWriter.WriteEndDocument().)
Public methodWriteInt32
Writes a BSON Int32 to the writer.
(Overrides BsonWriter.WriteInt32(Int32).)
Public methodWriteInt64
Writes a BSON Int64 to the writer.
(Overrides BsonWriter.WriteInt64(Int64).)
Public methodWriteJavaScript
Writes a BSON JavaScript to the writer.
(Overrides BsonWriter.WriteJavaScript(String).)
Public methodWriteJavaScriptWithScope
Writes a BSON JavaScript to the writer (call WriteStartDocument to start writing the scope).
(Overrides BsonWriter.WriteJavaScriptWithScope(String).)
Public methodWriteMaxKey
Writes a BSON MaxKey to the writer.
(Overrides BsonWriter.WriteMaxKey().)
Public methodWriteMinKey
Writes a BSON MinKey to the writer.
(Overrides BsonWriter.WriteMinKey().)
Public methodWriteName
Writes the name of an element to the writer.
(Inherited from BsonWriter.)
Public methodWriteNull
Writes a BSON null to the writer.
(Overrides BsonWriter.WriteNull().)
Public methodWriteObjectId
Writes a BSON ObjectId to the writer.
(Overrides BsonWriter.WriteObjectId(ObjectId).)
Public methodWriteRawBsonArray
Writes a raw BSON array.
(Overrides BsonWriter.WriteRawBsonArray(IByteBuffer).)
Public methodWriteRawBsonDocument
Writes a raw BSON document.
(Overrides BsonWriter.WriteRawBsonDocument(IByteBuffer).)
Public methodWriteRegularExpression
Writes a BSON regular expression to the writer.
(Overrides BsonWriter.WriteRegularExpression(BsonRegularExpression).)
Public methodWriteStartArray
Writes the start of a BSON array to the writer.
(Overrides BsonWriter.WriteStartArray().)
Public methodWriteStartDocument
Writes the start of a BSON document to the writer.
(Overrides BsonWriter.WriteStartDocument().)
Public methodWriteString
Writes a BSON String to the writer.
(Overrides BsonWriter.WriteString(String).)
Public methodWriteSymbol
Writes a BSON Symbol to the writer.
(Overrides BsonWriter.WriteSymbol(String).)
Public methodWriteTimestamp
Writes a BSON timestamp to the writer.
(Overrides BsonWriter.WriteTimestamp(Int64).)
Public methodWriteUndefined
Writes a BSON undefined to the writer.
(Overrides BsonWriter.WriteUndefined().)
Top
Extension Methods
  NameDescription
Public Extension MethodToBson
Serializes an object to a BSON byte array.
(Defined by BsonExtensionMethods.)
Public Extension MethodToBsonDocument
Serializes an object to a BsonDocument.
(Defined by BsonExtensionMethods.)
Public Extension MethodToJson
Serializes an object to a JSON string.
(Defined by BsonExtensionMethods.)
Top
Properties
  NameDescription
Public propertyBaseStream
Gets the base stream.
Public propertyBsonStream
Gets the BSON stream.
Public propertyDisposed
Gets whether the BsonWriter has been disposed.
(Inherited from BsonWriter.)
Protected propertyName
Gets the name of the element being written.
(Inherited from BsonWriter.)
Public propertySerializationDepth
Gets the current serialization depth.
(Inherited from BsonWriter.)
Public propertySettings
Gets the settings of the writer.
(Inherited from BsonWriter.)
Public propertyState
Gets the current state of the writer.
(Inherited from BsonWriter.)
Top
See Also