ConnectionSentMessagesEvent Constructor |
Namespace:
MongoDB.Driver.Core.Events
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public ConnectionSentMessagesEvent(
ConnectionId connectionId,
IReadOnlyList<int> requestIds,
int length,
TimeSpan networkDuration,
TimeSpan serializationDuration,
long? operationId
)
Public Sub New (
connectionId As ConnectionId,
requestIds As IReadOnlyList(Of Integer),
length As Integer,
networkDuration As TimeSpan,
serializationDuration As TimeSpan,
operationId As Long?
)
new :
connectionId : ConnectionId *
requestIds : IReadOnlyList<int> *
length : int *
networkDuration : TimeSpan *
serializationDuration : TimeSpan *
operationId : Nullable<int64> -> ConnectionSentMessagesEvent
Parameters
- connectionId
- Type: MongoDB.Driver.Core.ConnectionsConnectionId
The connection identifier. - requestIds
- Type: System.Collections.GenericIReadOnlyListInt32
The request ids. - length
- Type: SystemInt32
The length. - networkDuration
- Type: SystemTimeSpan
The duration of time spent on the network. - serializationDuration
- Type: SystemTimeSpan
The duration of time spent serializing the messages. - operationId
- Type: SystemNullableInt64
The operation identifier.
See Also