Table of Contents

Class ParsedScopesResult

Namespace
Duende.IdentityServer.Validation
Assembly
Duende.IdentityServer.dll

Represents the result of scope parsing.

public class ParsedScopesResult
Inheritance
ParsedScopesResult
Inherited Members

Constructors

ParsedScopesResult()

public ParsedScopesResult()

Properties

Errors

The errors encountered while parsing.

public ICollection<ParsedScopeValidationError> Errors { get; set; }

Property Value

ICollection<ParsedScopeValidationError>

ParsedScopes

The valid parsed scopes.

public ICollection<ParsedScopeValue> ParsedScopes { get; set; }

Property Value

ICollection<ParsedScopeValue>

Succeeded

Indicates if the result of parsing the scopes was successful.

public bool Succeeded { get; }

Property Value

bool