AbstractApplicationBuilder<T>.WithInstanceDiscovery(Boolean) Method

Definition

Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to false will completely disable instance discovery and authority validation. This will not affect the behavior of application configured with regional endpoints however.

public T WithInstanceDiscovery (bool enableInstanceDiscovery);
member this.WithInstanceDiscovery : bool -> 'T
Public Function WithInstanceDiscovery (enableInstanceDiscovery As Boolean) As T

Parameters

enableInstanceDiscovery
Boolean

Determines if instance discovery/Authority validation is performed

Returns

T

Remarks

If instance discovery is disabled and no user metadata is provided, MSAL will use the provided authority without any checks. WithInstanceDiscoveryMetadata(String) takes priority over enableInstanceDiscovery so instance metadata can be provided regardless of this configuration.

Applies to