Class OpenIddictScopeDescriptor
- Namespace
- OpenIddict.Abstractions
- Assembly
- OpenIddict.Abstractions.dll
Represents an OpenIddict scope descriptor.
public class OpenIddictScopeDescriptor
- Inheritance
-
OpenIddictScopeDescriptor
- Inherited Members
Constructors
OpenIddictScopeDescriptor()
public OpenIddictScopeDescriptor()
Properties
Description
Gets or sets the description associated with the scope.
public string? Description { get; set; }
Property Value
Descriptions
Gets the localized descriptions associated with the scope.
public Dictionary<CultureInfo, string> Descriptions { get; }
Property Value
DisplayName
Gets or sets the display name associated with the scope.
public string? DisplayName { get; set; }
Property Value
DisplayNames
Gets the localized display names associated with the scope.
public Dictionary<CultureInfo, string> DisplayNames { get; }
Property Value
Name
Gets or sets the unique name associated with the scope.
public string? Name { get; set; }
Property Value
Properties
Gets the additional properties associated with the scope.
public Dictionary<string, JsonElement> Properties { get; }
Property Value
Resources
Gets the resources associated with the scope.
public HashSet<string> Resources { get; }