Show / Hide Table of Contents

Interface IPipelineTask<TPayload>

Namespace: Edgar.Unity
Assembly: cs.temp.dll.dll
Syntax
public interface IPipelineTask<TPayload>
    where TPayload : class
Type Parameters
Name Description
TPayload

Properties

Payload

Payload object.

Declaration
TPayload Payload { get; set; }
Property Value
Type Description
TPayload

Methods

Process()

Method containing all the logic of the task.

Declaration
IEnumerator Process()
Returns
Type Description
System.Collections.IEnumerator
Remarks

When this method is called, the Payload property is already set.

In This Article
Back to top Generated by DocFX