Show / Hide Table of Contents

Class CreateClientDto

Inheritance
object
ExtensibleObject
CreateClientDto
Implements
IHasExtraProperties
IValidatableObject
Inherited Members
ExtensibleObject.Validate(ValidationContext)
ExtensibleObject.ExtraProperties
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Volo.Abp.IdentityServer.Client.Dtos
Assembly: Volo.Abp.IdentityServer.Application.Contracts.dll
Syntax
public class CreateClientDto : ExtensibleObject, IHasExtraProperties, IValidatableObject

Constructors

CreateClientDto()

Declaration
public CreateClientDto()

Properties

CallbackUrl

Declaration
public string CallbackUrl { get; set; }
Property Value
Type Description
string

ClientId

Declaration
[Required]
[DynamicStringLength(typeof(ClientConsts), "ClientIdMaxLength", null)]
public string ClientId { get; set; }
Property Value
Type Description
string

ClientName

Declaration
[Required]
[DynamicStringLength(typeof(ClientConsts), "ClientNameMaxLength", null)]
public string ClientName { get; set; }
Property Value
Type Description
string

ClientUri

Declaration
[DynamicStringLength(typeof(ClientConsts), "ClientUriMaxLength", null)]
public string ClientUri { get; set; }
Property Value
Type Description
string

Description

Declaration
[DynamicStringLength(typeof(ClientConsts), "DescriptionMaxLength", null)]
public string Description { get; set; }
Property Value
Type Description
string

LogoUri

Declaration
[DynamicStringLength(typeof(ClientConsts), "LogoUriMaxLength", null)]
public string LogoUri { get; set; }
Property Value
Type Description
string

LogoutUrl

Declaration
public string LogoutUrl { get; set; }
Property Value
Type Description
string

RequireConsent

Declaration
public bool RequireConsent { get; set; }
Property Value
Type Description
bool

Scopes

Declaration
public string[] Scopes { get; set; }
Property Value
Type Description
string[]

Secrets

Declaration
public ClientSecretDto[] Secrets { get; set; }
Property Value
Type Description
ClientSecretDto[]

Implements

IHasExtraProperties
IValidatableObject

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform