Class ParsedScopeValue
- Namespace
- Duende.IdentityServer.Validation
- Assembly
- Duende.IdentityServer.dll
Models a parsed scope value.
public class ParsedScopeValue
- Inheritance
-
ParsedScopeValue
- Inherited Members
Constructors
ParsedScopeValue(string)
Ctor
public ParsedScopeValue(string rawValue)
Parameters
rawValue
string
ParsedScopeValue(string, string, string?)
Ctor
public ParsedScopeValue(string rawValue, string parsedName, string? parsedParameter)
Parameters
Properties
ParsedName
The parsed name of the scope. If the scope has no structure, the parsed name will be the same as the raw value.
public string ParsedName { get; set; }
Property Value
ParsedParameter
The parameter value of the parsed scope. If the scope has no structure, then the value will be null.
public string? ParsedParameter { get; set; }
Property Value
RawValue
The original (raw) value of the scope.
public string RawValue { get; set; }