ClientCollection Class

Definition

A collection of Duende.IdentityServer.Models.Client.

public ref class ClientCollection : System::Collections::ObjectModel::Collection<IdentityServer4::Models::Client ^>
public class ClientCollection : System.Collections.ObjectModel.Collection<IdentityServer4.Models.Client>
public class ClientCollection : System.Collections.ObjectModel.Collection<Duende.IdentityServer.Models.Client>
type ClientCollection = class
    inherit Collection<Client>
Public Class ClientCollection
Inherits Collection(Of Client)
Inheritance
Collection<IdentityServer4.Models.Client>
ClientCollection
Inheritance
Collection<Duende.IdentityServer.Models.Client>
ClientCollection

Constructors

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.

Properties

Item[String]

Gets a client given its client id.

Methods

AddIdentityServerSPA(String, Action<ClientBuilder>)

Adds a single page application that coexists with an authorization server.

AddNativeApp(String, Action<ClientBuilder>)

Adds an externally registered native application..

AddRange(Client[])

Adds the clients in clients to the collection.

AddRange(Client[])

Adds the clients in clients to the collection.

AddSPA(String, Action<ClientBuilder>)

Adds an externally registered single page application.

Applies to