Table of Contents

ConditionalValue<TResult> Class

Definition

Namespace
Cuemon
Assemblies
Cuemon.Kernel.dll
Source
src/Cuemon.Kernel/ConditionalValue.cs

Represents the base class to support the Try-Parse pattern of an operation that may be asynchronous in nature.

public abstract class ConditionalValue<TResult> : ConditionalValue

Type Parameters

TResult

The type of the return value of the operation.

Inheritance
ConditionalValue<TResult>
Derived
Inherited Members

Remarks

Constructors

Name Description
ConditionalValue(bool, TResult, Exception)

Initializes a new instance of the ConditionalValue<TResult> class.

Properties

Name Description
Result

Gets the result of the operation.

See Also