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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic 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