/// <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);
public Assinaturas(IJsonWebKey jsonWebKey) { Selected = jsonWebKey; }