mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
890 B
27 lines
890 B
using System.Net.Http;
|
|
|
|
namespace Volo.Abp.IdentityModel
|
|
{
|
|
public class IdentityModelHttpClientAuthenticateContext
|
|
{
|
|
public HttpClient Client { get; }
|
|
|
|
/// <summary>
|
|
/// The identity client name configured with the <see cref="IdentityClientOptions"/>.
|
|
/// </summary>
|
|
public string IdentityClientName { get; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="client"><see cref="HttpClient"/> object to be authorized</param>
|
|
/// <param name="identityClientName">The identity client name configured with the <see cref="IdentityClientOptions"/>.</param>
|
|
public IdentityModelHttpClientAuthenticateContext(
|
|
HttpClient client,
|
|
string identityClientName = null)
|
|
{
|
|
Client = client;
|
|
IdentityClientName = identityClientName;
|
|
}
|
|
}
|
|
}
|
|
|