AbstractApplicationBuilder<T>.WithInstanceDiscovery(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.