Microsoft.Identity.Client.PublicClientApplication.AcquireTokenUsingIntegratedAuthCommonAsync C# (CSharp) Method

AcquireTokenUsingIntegratedAuthCommonAsync() private method

private AcquireTokenUsingIntegratedAuthCommonAsync ( Authenticator authenticator, string scope, UserCredential userCredential, string policy ) : Task
authenticator Microsoft.Identity.Client.Internal.Authenticator
scope string
userCredential UserCredential
policy string
return Task
        private async Task<AuthenticationResult> AcquireTokenUsingIntegratedAuthCommonAsync(Authenticator authenticator, string[] scope, UserCredential userCredential, string policy)
        {
            var handler = new SilentWebUiRequest(this.GetHandlerData(authenticator, scope, policy, this.UserTokenCache), userCredential);
            return await handler.RunAsync().ConfigureAwait(false);
        }