Share via


ApiScopeCollection Constructors

Definition

Overloads

ApiScopeCollection()

Initializes a new instance of ApiScopeCollection.

ApiScopeCollection(IList<ApiScope>)

Initializes a new instance of ApiScopeCollection with the given API scopes in list.

ApiScopeCollection(IList<ApiScope>)

Initializes a new instance of ApiScopeCollection with the given API scopes in list.

ApiScopeCollection()

Source:
ApiScopeCollection.cs
Source:
ApiScopeCollection.cs
Source:
ApiScopeCollection.cs
Source:
ApiScopeCollection.cs

Initializes a new instance of ApiScopeCollection.

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

Applies to

ApiScopeCollection(IList<ApiScope>)

Source:
ApiScopeCollection.cs
Source:
ApiScopeCollection.cs
Source:
ApiScopeCollection.cs

Initializes a new instance of ApiScopeCollection with the given API scopes in list.

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

Parameters

list
IList<Duende.IdentityServer.Models.ApiScope>

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

Applies to

ApiScopeCollection(IList<ApiScope>)

Source:
ApiScopeCollection.cs

Initializes a new instance of ApiScopeCollection with the given API scopes in list.

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

Parameters

list
IList<IdentityServer4.Models.ApiScope>

The initial list of IdentityServer4.Models.ApiScope.

Applies to