AuthBridge.Web.Controllers.AuthenticationController.ProcessResponse C# (CSharp) Метод

ProcessResponse() приватный Метод

private ProcessResponse ( ) : void
Результат void
        public void ProcessResponse()
        {
            Logger.Info("ProcessResponse!");
            if (string.IsNullOrEmpty(federationContext.IssuerName))
            {
                Logger.WarnFormat("The context cookie was not found. Try to sign in again.");
                throw new InvalidOperationException("The context cookie was not found. Try to sign in again.");
            }
            if (Logger.IsInfoEnabled)
            {
                Logger.InfoFormat("ProcessResponse! federationContext.IssuerName: {0}", federationContext.IssuerName);
                Logger.InfoFormat("ProcessResponse! federationContext.OriginalUrl: {0}", federationContext.OriginalUrl);
            }

            Response.Cache.SetCacheability(HttpCacheability.NoCache);
            Response.Cache.SetExpires(DateTime.Today.AddYears(-10));
            Response.Cache.SetNoStore();

            ProcessResponse(federationContext.IssuerName, federationContext.OriginalUrl);

            federationContext.Destroy();
            HttpContext.ApplicationInstance.CompleteRequest();
        }

Same methods

AuthenticationController::ProcessResponse ( string issuerName, string originalUrl ) : void