CommandFailedEvent Constructor |
Namespace: MongoDB.Driver.Core.EventsAssembly: MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.4.1
Syntax public CommandFailedEvent(
string commandName,
Exception exception,
Nullable<long> operationId,
int requestId,
ConnectionId connectionId,
TimeSpan duration
)
Public Sub New (
commandName As String,
exception As Exception,
operationId As Nullable(Of Long),
requestId As Integer,
connectionId As ConnectionId,
duration As TimeSpan
)
new :
commandName : string *
exception : Exception *
operationId : Nullable<int64> *
requestId : int *
connectionId : ConnectionId *
duration : TimeSpan -> CommandFailedEvent
Parameters
- commandName
- Type: SystemString
Name of the command. - exception
- Type: SystemException
The exception. - operationId
- Type: SystemNullableInt64
The operation identifier. - requestId
- Type: SystemInt32
The request identifier. - connectionId
- Type: MongoDB.Driver.Core.ConnectionsConnectionId
The connection identifier. - duration
- Type: SystemTimeSpan
The duration.
See Also