/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/openiddict/openiddict-core for more information concerning * the license and the contributors participating to this project. */ using System.Net; using System.Net.Http.Headers; using System.Net.Mail; using Polly; using Polly.Extensions.Http; namespace OpenIddict.Validation.SystemNetHttp; /// /// Provides various settings needed to configure the OpenIddict validation/System.Net.Http integration. /// public sealed class OpenIddictValidationSystemNetHttpOptions { /// /// Gets or sets the HTTP Polly error policy used by the internal OpenIddict HTTP clients. /// public IAsyncPolicy? HttpErrorPolicy { get; set; } = HttpPolicyExtensions.HandleTransientHttpError() .OrResult(response => response.StatusCode == HttpStatusCode.NotFound) .WaitAndRetryAsync(3, attempt => TimeSpan.FromSeconds(Math.Pow(2, attempt))); /// /// Gets or sets the contact mail address used in the "From" header that is /// attached to the backchannel HTTP requests sent to the authorization server. /// public MailAddress? ContactAddress { get; set; } /// /// Gets or sets the product information used in the "User-Agent" header that is /// attached to the backchannel HTTP requests sent to the authorization server. /// public ProductInfoHeaderValue? ProductInformation { get; set; } }