Microsoft.Identity.Client.WebUI.Authenticate C# (CSharp) Method

Authenticate() private method

private Authenticate ( Uri requestUri, Uri callbackUri, string headers ) : AuthorizationResult
requestUri System.Uri
callbackUri System.Uri
headers string
return Microsoft.Identity.Client.Internal.AuthorizationResult
        internal AuthorizationResult Authenticate(Uri requestUri, Uri callbackUri, string headers)
        {
            this.RequestUri = requestUri;
            this.CallbackUri = callbackUri;

            ThrowOnNetworkDown();
            return this.OnAuthenticate(headers);
        }

Same methods

WebUI::Authenticate ( Uri authorizationUri, Uri redirectUri, string>.IDictionary additionalHeaders, CallState callState ) : void