AuthBridge.Protocols.OAuth.TwitterHandler.ProcessSignInRequest C# (CSharp) Method

ProcessSignInRequest() public method

public ProcessSignInRequest ( Scope scope, System.Web.HttpContextBase httpContext ) : void
scope AuthBridge.Model.Scope
httpContext System.Web.HttpContextBase
return void
        public override void ProcessSignInRequest(Scope scope, HttpContextBase httpContext)
        {
            var client = new TwitterClient(this.consumerKey, this.consumerSecret);
            client.RequestAuthentication(httpContext, this.MultiProtocolIssuer.ReplyUrl);
        }