Class CreateClientDto
Inheritance
CreateClientDto
Assembly: Volo.Abp.IdentityServer.Application.Contracts.dll
Syntax
public class CreateClientDto : ExtensibleObject, IHasExtraProperties, IValidatableObject
Constructors
CreateClientDto()
Declaration
Properties
CallbackUrl
Declaration
public string CallbackUrl { get; set; }
Property Value
ClientId
Declaration
[Required]
[DynamicStringLength(typeof(ClientConsts), "ClientIdMaxLength", null)]
public string ClientId { get; set; }
Property Value
ClientName
Declaration
[Required]
[DynamicStringLength(typeof(ClientConsts), "ClientNameMaxLength", null)]
public string ClientName { get; set; }
Property Value
ClientUri
Declaration
[DynamicStringLength(typeof(ClientConsts), "ClientUriMaxLength", null)]
public string ClientUri { get; set; }
Property Value
Description
Declaration
[DynamicStringLength(typeof(ClientConsts), "DescriptionMaxLength", null)]
public string Description { get; set; }
Property Value
LogoUri
Declaration
[DynamicStringLength(typeof(ClientConsts), "LogoUriMaxLength", null)]
public string LogoUri { get; set; }
Property Value
LogoutUrl
Declaration
public string LogoutUrl { get; set; }
Property Value
RequireConsent
Declaration
public bool RequireConsent { get; set; }
Property Value
Scopes
Declaration
public string[] Scopes { get; set; }
Property Value
Secrets
Declaration
public ClientSecretDto[] Secrets { get; set; }
Property Value
Implements
Extension Methods