Click or drag to resize

RetryableInsertCommandOperation<TDocument> Class

Represents an insert command operation.
Inheritance Hierarchy
System.Object
  MongoDB.Driver.Core.Operations.RetryableWriteCommandOperationBase
    MongoDB.Driver.Core.Operations.RetryableInsertCommandOperation<TDocument>

Namespace:  MongoDB.Driver.Core.Operations
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax
public class RetryableInsertCommandOperation<TDocument> : RetryableWriteCommandOperationBase
where TDocument : class

Type Parameters

TDocument
The type of the document.

The RetryableInsertCommandOperation<TDocument> type exposes the following members.

Constructors
  NameDescription
Public methodRetryableInsertCommandOperation<TDocument>
Initializes a new instance of the RetryableInsertCommandOperation<TDocument> class.
Top
Properties
  NameDescription
Public propertyBypassDocumentValidation
Gets or sets a value indicating whether to bypass document validation.
Public propertyCollectionNamespace
Gets the collection namespace.
Public propertyComment
Gets or sets the comment.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyDatabaseNamespace
Gets the database namespace.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyDocuments
Gets the documents.
Public propertyDocumentSerializer
Gets the document serializer.
Public propertyIsOrdered
Gets or sets a value indicating whether the server should process the requests in order.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyMaxBatchCount
Gets or sets the maximum batch count.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyMessageEncoderSettings
Gets the message encoder settings.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyRetryRequested
Gets or sets a value indicating whether retry is enabled for the operation.
(Inherited from RetryableWriteCommandOperationBase.)
Public propertyWriteConcern
Gets or sets the write concern.
(Inherited from RetryableWriteCommandOperationBase.)
Top
Methods
  NameDescription
Protected methodCreateCommand
Creates the command.
(Overrides RetryableWriteCommandOperationBase.CreateCommand(ICoreSessionHandle, Int32, Nullable<Int64>).)
Protected methodCreateCommandPayloads
Creates the command payloads.
(Overrides RetryableWriteCommandOperationBase.CreateCommandPayloads(IChannelHandle, Int32).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExecute(IWriteBinding, CancellationToken)
Executes the operation.
(Inherited from RetryableWriteCommandOperationBase.)
Public methodExecute(RetryableWriteContext, CancellationToken)
Executes the first attempt.
(Inherited from RetryableWriteCommandOperationBase.)
Public methodExecuteAsync(IWriteBinding, CancellationToken)
Executes the operation.
(Inherited from RetryableWriteCommandOperationBase.)
Public methodExecuteAsync(RetryableWriteContext, CancellationToken)
Executes the first attempt.
(Inherited from RetryableWriteCommandOperationBase.)
Public methodExecuteAttempt
Executes the first attempt.
(Inherited from RetryableWriteCommandOperationBase.)
Public methodExecuteAttemptAsync
Executes the first attempt.
(Inherited from RetryableWriteCommandOperationBase.)
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 methodGetHashCode
Serves as the default hash function.
(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 methodToString
Returns a string that represents the current object.
(Inherited from Object.)
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
See Also