| 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.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
 Syntax
Syntaxpublic 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
See Also