Namespace:
MongoDB.Driver.Core.WireProtocol.Messages
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntaxprotected RequestMessage(
int requestId,
Func<bool> shouldBeSent = null
)
Protected Sub New (
requestId As Integer,
Optional shouldBeSent As Func(Of Boolean) = Nothing
)
new :
requestId : int *
?shouldBeSent : Func<bool>
(* Defaults:
let _shouldBeSent = defaultArg shouldBeSent null
*)
-> RequestMessage
Parameters
- requestId
- Type: SystemInt32
The request identifier. - shouldBeSent (Optional)
- Type: SystemFuncBoolean
A delegate that determines whether this message should be sent.
See Also