public AssertionProfileOAuthClient(Uri authorizationServerUrl, string clientId, string clientSecret) : base(authorizationServerUrl) { this.clientId = clientId; this.clientSecret = clientSecret; this.clientCredentials = new AssertionClientCredentials(); }
public AssertionProfileOAuthClient(Uri authorizationServerUrl, string scope) : base(authorizationServerUrl, scope) { this.credentials = new AssertionClientCredentials(); }