Show / Hide Table of Contents

Class TaskInfo

Inheritance
object
TaskInfo
Namespace: Xrpl.Client
Assembly: Xrpl.dll
Syntax
public class TaskInfo

Constructors

| Edit this page View Source

TaskInfo()

Declaration
public TaskInfo()

Properties

| Edit this page View Source

CancellationRegistration

Declaration
public CancellationTokenRegistration? CancellationRegistration { get; set; }
Property Value
Type Description
CancellationTokenRegistration?
| Edit this page View Source

CompletionTask

The task behind TaskCompletionResult, used to observe faults without reflection. Null for externally built instances.

Declaration
public Task CompletionTask { get; set; }
Property Value
Type Description
Task
| Edit this page View Source

RemoveUponCompletion

Declaration
public bool RemoveUponCompletion { get; set; }
Property Value
Type Description
bool
| Edit this page View Source

SetException

Faults TaskCompletionResult. Set when the request is created; null for externally built instances.

Declaration
public Func<Exception, bool> SetException { get; set; }
Property Value
Type Description
Func<Exception, bool>
| Edit this page View Source

SetResult

Completes TaskCompletionResult with a deserialized result. Set when the request is created, so the response path does not have to reach for the strongly typed TrySetResult through reflection. Null for externally built instances.

Declaration
public Func<object, bool> SetResult { get; set; }
Property Value
Type Description
Func<object, bool>
| Edit this page View Source

TaskCompletionResult

Declaration
public object TaskCompletionResult { get; set; }
Property Value
Type Description
object
| Edit this page View Source

TaskId

Declaration
public Guid TaskId { get; set; }
Property Value
Type Description
Guid
| Edit this page View Source

Type

Declaration
public Type Type { get; set; }
Property Value
Type Description
Type
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX