示例#1
0
 /// <inheritdoc />
 public async Task <IJsonWebKey> CreateIdentityProviderKeyAsync(IJsonWebKey jsonWebKey, CancellationToken cancellationToken = default(CancellationToken))
 => await PostAsync <JsonWebKey>(new HttpRequest
 {
     Uri     = "/api/v1/idps/credentials/keys",
     Verb    = HttpVerb.Post,
     Payload = jsonWebKey,
 }, cancellationToken).ConfigureAwait(false);
示例#2
0
 public Assinaturas(IJsonWebKey jsonWebKey)
 {
     Selected = jsonWebKey;
 }