Class RegionDetails
Contains the result of region when MSAL region discovery is used, published as part of AuthenticationResultMetadata. AuthenticationResultMetadata for additional metadata information of the authentication result.
public class RegionDetails
- Inheritance
-
RegionDetails
- Inherited Members
Constructors
RegionDetails(RegionOutcome, string, string)
Constructor for RegionDetails
public RegionDetails(RegionOutcome regionOutcome, string regionUsed, string autoDetectionError)
Parameters
regionOutcome
RegionOutcomeregionUsed
stringautoDetectionError
string
Properties
AutoDetectionError
Error details when region auto detect fails
public string AutoDetectionError { get; }
Property Value
RegionOutcome
Region Outcome based on MSAL region detection
public RegionOutcome RegionOutcome { get; }
Property Value
RegionUsed
Region used to construct /token endpoint to contact ESTS.
public string RegionUsed { get; }