Table of Contents

Class WorkItemDispatcherContext

Namespace
DurableTask.Core
Assembly
DurableTask.Core.dll

Class to hold context for a WorkItemDispatcher call

public class WorkItemDispatcherContext
Inheritance
WorkItemDispatcherContext
Inherited Members

Constructors

WorkItemDispatcherContext(string, string, string)

Creates a new instance of the WorkItemDispatcherContext class

public WorkItemDispatcherContext(string name, string id, string dispatcherId)

Parameters

name string

The context name

id string

The context id

dispatcherId string

The context dispatcher id

Properties

DispatcherId

Gets the dispatcher id from the context

public string DispatcherId { get; }

Property Value

string

Id

Gets the id from the context

public string Id { get; }

Property Value

string

Name

Gets the name from the context

public string Name { get; }

Property Value

string