AuthBridge.Protocols.OAuth.LiveIdHandler.ProcessSignInRequest C# (CSharp) 메소드

ProcessSignInRequest() 공개 메소드

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