View AzureAdB2cIdentityProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AzureAdB2cIdentityProvider : IdentityProvidersProcessor | |
{ | |
public AzureAdB2cIdentityProvider(FederatedAuthenticationConfiguration federatedAuthenticationConfiguration, ICookieManager cookieManager, BaseSettings settings) : base(federatedAuthenticationConfiguration, cookieManager, settings) | |
{ | |
} | |
protected override string IdentityProviderName => "AzureAdB2cExtranet"; | |
protected override void ProcessCore(IdentityProvidersArgs args) | |
{ |