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

GetHandlerData() private method

private GetHandlerData ( Authenticator authenticator, string scope, string policy, TokenCache cache ) : AuthenticationRequestParameters
authenticator Microsoft.Identity.Client.Internal.Authenticator
scope string
policy string
cache TokenCache
return Microsoft.Identity.Client.Internal.AuthenticationRequestParameters
        internal override AuthenticationRequestParameters GetHandlerData(Authenticator authenticator, string[] scope, string policy,
            TokenCache cache)
        {
            AuthenticationRequestParameters parameters = base.GetHandlerData(authenticator, scope, policy, cache);
            parameters.ClientKey = new ClientKey(this.ClientId);

            return parameters;
        }