ConnectionStringResolveAsync Method (Boolean, CancellationToken) |
Resolves a connection string. If the connection string indicates more information is available
in the DNS system, it will acquire that information as well.
Namespace:
MongoDB.Driver.Core.Configuration
Assembly:
MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax public Task<ConnectionString> ResolveAsync(
bool resolveHosts,
CancellationToken cancellationToken = default
)
Public Function ResolveAsync (
resolveHosts As Boolean,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of ConnectionString)
member ResolveAsync :
resolveHosts : bool *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> Task<ConnectionString>
Parameters
- resolveHosts
- Type: SystemBoolean
Whether to resolve hosts. - cancellationToken (Optional)
- Type: System.ThreadingCancellationToken
The cancellation token.
Return Value
Type:
TaskConnectionStringA resolved ConnectionString.
See Also