public OktaIdentityProviderProcessor(FederatedAuthenticationConfiguration federatedAuthenticationConfiguration, Microsoft.Owin.Infrastructure.ICookieManager cookieManager, BaseSettings settings) :
     base(federatedAuthenticationConfiguration, cookieManager, settings)
 {
     ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
 }
Beispiel #2
0
 public LinkedInIdentityProvider(FederatedAuthenticationConfiguration federatedAuthenticationConfiguration, Microsoft.Owin.Infrastructure.ICookieManager cookieManager, Sitecore.Abstractions.BaseSettings settings)
     : base(federatedAuthenticationConfiguration, cookieManager, settings)
 {
 }
Beispiel #3
0
 public AzureADIdentityProviderProcessor(FederatedAuthenticationConfiguration federatedAuthenticationConfiguration, Microsoft.Owin.Infrastructure.ICookieManager cookieManager, BaseSettings settings) :
     base(federatedAuthenticationConfiguration, cookieManager, settings)
 {
     ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
     IdentityModelEventSource.ShowPII     = true;
 }