Table of Contents

Class StepResult

Namespace
Microsoft.Accordant
Assembly
Accordant.dll

This class a result of applying a step function.

public class StepResult
Inheritance
StepResult
Inherited Members

Properties

EdgeMetadata

Additional data to store in the edge leading to the next state.

public object EdgeMetadata { get; set; }

Property Value

object

State

The next state.

public IState State { get; set; }

Property Value

IState

StepFunctions

The list of step functions that should be applied in the next state.

public IList<IStepFunction> StepFunctions { get; set; }

Property Value

IList<IStepFunction>