Exemplo n.º 1
0
 public AssertionProfileOAuthClient(Uri authorizationServerUrl, string clientId, string clientSecret)
     : base(authorizationServerUrl)
 {
     this.clientId          = clientId;
     this.clientSecret      = clientSecret;
     this.clientCredentials = new AssertionClientCredentials();
 }
Exemplo n.º 2
0
 public AssertionProfileOAuthClient(Uri authorizationServerUrl, string scope)
     : base(authorizationServerUrl, scope)
 {
     this.credentials = new AssertionClientCredentials();
 }