Table of Contents

Class NavigationResult<TValue>

Namespace
GroupeIsa.Neos.Designer.UIAbstractions
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Represents the navigation result.

public class NavigationResult<TValue>

Type Parameters

TValue

Type of the result value.

Inheritance
NavigationResult<TValue>
Derived
Inherited Members

Constructors

NavigationResult(NavigationResultState?, TValue?)

Initializes a new instance of the NavigationResult<TValue> class.

public NavigationResult(NavigationResultState? state = null, TValue? value = default)

Parameters

state NavigationResultState?

The state of the navigation result.

value TValue

Value of the navigation result.

Properties

State

Gets or sets the state of the navigation.

public NavigationResultState State { get; set; }

Property Value

NavigationResultState

Value

Gets or sets the value of the result.

public TValue? Value { get; set; }

Property Value

TValue