EnsureThat Method (Boolean, String) |
Ensures that an assertion is true.
Namespace:
MongoDB.Driver.Core.Misc
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.20.0+ee01960089f28ea1b501690df5fc9f6318a70242
Syntax public static void That(
bool assertion,
string message
)
Public Shared Sub That (
assertion As Boolean,
message As String
)
static member That :
assertion : bool *
message : string -> unit
Parameters
- assertion
- Type: SystemBoolean
The assertion. - message
- Type: SystemString
The message to use with the exception that is thrown if the assertion is false.
See Also