Table of Contents

Class ConstantValue<T>

Namespace
Acuit.Pinpoint.Workflows
Assembly
Acuit.Pinpoint.Workflows.dll
public class ConstantValue<T> : ValueSource<T>

Type Parameters

T
Inheritance
ConstantValue<T>
Inherited Members

Constructors

ConstantValue()

public ConstantValue()

ConstantValue(T)

public ConstantValue(T value)

Parameters

value T

ConstantValue(T, string)

public ConstantValue(T value, string text)

Parameters

value T
text string

Properties

Value

public T Value { get; set; }

Property Value

T

Methods

EvaluateAsync(ActivityContext, CancellationToken)

Evaluates the value.

public override Task<T> EvaluateAsync(ActivityContext context, CancellationToken cancellationToken = default)

Parameters

context ActivityContext

The activity context.

cancellationToken CancellationToken

A token that can request cancelling the evaluation.

Returns

Task<T>

A task that represents the asynchronous operation. The value of its Result property contains the resulting value.

Exceptions

ArgumentNullException

context is null.

Exception

The value could not be evaluated. Possible exceptions depend on the implementation.

ToString()

public override string ToString()

Returns

string