ClientCollection 类

定义

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)
继承
Collection<IdentityServer4.Models.Client>
ClientCollection
继承
Collection<Duende.IdentityServer.Models.Client>
ClientCollection

构造函数

ClientCollection()

初始化 ClientCollection 的新实例。

ClientCollection(IList<Client>)

使用 中的list给定客户端初始化 的新实例ClientCollection

ClientCollection(IList<Client>)

使用 中的list给定客户端初始化 的新实例ClientCollection

属性

Item[String]

获取给定客户端 ID 的客户端。

方法

AddIdentityServerSPA(String, Action<ClientBuilder>)

添加与授权服务器共存的单页应用程序。

AddNativeApp(String, Action<ClientBuilder>)

添加外部注册的本机应用程序。

AddRange(Client[])

将 中的 clients 客户端添加到 集合。

AddRange(Client[])

将 中的 clients 客户端添加到 集合。

AddSPA(String, Action<ClientBuilder>)

添加外部注册的单页应用程序。

适用于