AuthBridge.Protocols.OAuth.GoogleHandler.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 GoogleOAuthClient(_clientId, _clientSecret);
            client.RequestAuthentication(httpContext, MultiProtocolIssuer.ReplyUrl);
        }