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.18.0+554c799eb1ec8dd732f16c739387f6664df1ba7a
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