Table of Contents

Struct Cancellable<T>

Namespace
LfrlAnvil.Async
Assembly
LfrlAnvil.Core.dll

A lightweight object with a generic value and a CancellationToken instance.

public readonly struct Cancellable<T>

Type Parameters

T

Value's type.

Inherited Members
Extension Methods

Constructors

Cancellable(T, CancellationToken)

Creates a Cancellable<T> instance.

public Cancellable(T value, CancellationToken token)

Parameters

value T

Value to assign.

token CancellationToken

CancellationToken to assign.

Properties

Token

public CancellationToken Token { get; }

Property Value

CancellationToken

Value

Assigned value.

public T Value { get; }

Property Value

T

Methods

ToString()

Returns a string representation of this Cancellable<T> instance.

[Pure]
public override string ToString()

Returns

string

String representation.