ClientCollection Constructors

Definition

Overloads

ClientCollection()

Initializes a new instance of ClientCollection.

ClientCollection(IList<Client>)

Initializes a new instance of ClientCollection with the given clients in list.

ClientCollection(IList<Client>)

Initializes a new instance of ClientCollection with the given clients in list.

ClientCollection()

Initializes a new instance of ClientCollection.

public:
 ClientCollection();
public ClientCollection ();
Public Sub New ()

Applies to

ClientCollection(IList<Client>)

Initializes a new instance of ClientCollection with the given clients in list.

public ClientCollection (System.Collections.Generic.IList<Duende.IdentityServer.Models.Client> list);
new Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ClientCollection : System.Collections.Generic.IList<Duende.IdentityServer.Models.Client> -> Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ClientCollection
Public Sub New (list As IList(Of Client))

Parameters

list
IList<Duende.IdentityServer.Models.Client>

The initial list of Duende.IdentityServer.Models.Client.

Applies to

ClientCollection(IList<Client>)

Initializes a new instance of ClientCollection with the given clients in list.

public:
 ClientCollection(System::Collections::Generic::IList<IdentityServer4::Models::Client ^> ^ list);
public ClientCollection (System.Collections.Generic.IList<IdentityServer4.Models.Client> list);
new Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ClientCollection : System.Collections.Generic.IList<IdentityServer4.Models.Client> -> Microsoft.AspNetCore.ApiAuthorization.IdentityServer.ClientCollection
Public Sub New (list As IList(Of Client))

Parameters

list
IList<IdentityServer4.Models.Client>

The initial list of IdentityServer4.Models.Client.

Applies to