Class CreateApiResourceDto
Inheritance
CreateApiResourceDto
Assembly: Volo.Abp.IdentityServer.Application.Contracts.dll
Syntax
public class CreateApiResourceDto : ExtensibleObject, IHasExtraProperties, IValidatableObject
Constructors
CreateApiResourceDto()
Declaration
public CreateApiResourceDto()
Properties
AllowedAccessTokenSigningAlgorithms
Declaration
[DynamicStringLength(typeof(ApiResourceConsts), "AllowedAccessTokenSigningAlgorithmsMaxLength", null)]
public string AllowedAccessTokenSigningAlgorithms { get; set; }
Property Value
Description
Declaration
[DynamicStringLength(typeof(ApiResourceConsts), "DescriptionMaxLength", null)]
public string Description { get; set; }
Property Value
DisplayName
Declaration
[DynamicStringLength(typeof(ApiResourceConsts), "DisplayNameMaxLength", null)]
public string DisplayName { get; set; }
Property Value
Name
Declaration
[Required]
[DynamicStringLength(typeof(ApiResourceConsts), "NameMaxLength", null)]
public string Name { get; set; }
Property Value
ShowInDiscoveryDocument
Declaration
public bool ShowInDiscoveryDocument { get; set; }
Property Value
UserClaims
Declaration
public List<ApiResourceClaimDto> UserClaims { get; set; }
Property Value
Implements
Extension Methods