AuthBridge.Protocols.WSFed.WindowsAzureADHandler.ProcessSignInRequest C# (CSharp) Метод

ProcessSignInRequest() публичный Метод

public ProcessSignInRequest ( Scope scope, System.Web.HttpContextBase httpContext ) : void
scope Scope
httpContext System.Web.HttpContextBase
Результат void
        public override void ProcessSignInRequest(Scope scope, HttpContextBase httpContext)
        {
            string localAuthorityRealm = realmFormat
                                .Replace("{tenantId}", tenantId)
                                .Replace("{appPrincipalId}", appPrincipalId);

            RequestAuthentication(httpContext, this.Issuer.Url.ToString(), localAuthorityRealm, this.MultiProtocolIssuer.ReplyUrl.ToString());
        }