Table of Contents

Method ResolveAsync

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

ResolveAsync(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.

public Task<MongoUrl> ResolveAsync(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

The cancellation token.

Returns

Task<MongoUrl>

A resolved MongoURL.

ResolveAsync(bool, 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.

public Task<MongoUrl> ResolveAsync(bool resolveHosts, CancellationToken cancellationToken = default)

Parameters

resolveHosts bool

Whether to resolve hosts.

cancellationToken CancellationToken

The cancellation token.

Returns

Task<MongoUrl>

A resolved MongoURL.