AuthBridge.Protocols.OAuth.LiveIdHandler.ProcessSignInRequest C# (CSharp) Méthode

ProcessSignInRequest() public méthode

public ProcessSignInRequest ( Scope scope, System.Web.HttpContextBase httpContext ) : void
scope AuthBridge.Model.Scope
httpContext System.Web.HttpContextBase
Résultat void
        public override void ProcessSignInRequest(Scope scope, HttpContextBase httpContext)
        {
            var client = new MicrosoftClient(this.appId, this.secretKey);
            client.RequestAuthentication(httpContext, this.MultiProtocolIssuer.ReplyUrl);
        }