Table of Contents

Class ScheduleDescription

Namespace
Temporalio.Client.Schedules
Assembly
Temporalio.dll

Description of a schedule.

public class ScheduleDescription
Inheritance
ScheduleDescription
Inherited Members

Properties

Id

Gets the ID of the schedule.

public string Id { get; }

Property Value

string

Info

Gets information about the schedule.

public ScheduleInfo Info { get; }

Property Value

ScheduleInfo

Memo

Gets the schedule memo dictionary, lazily creating when accessed. The values are encoded.

public IReadOnlyDictionary<string, IEncodedRawValue> Memo { get; }

Property Value

IReadOnlyDictionary<string, IEncodedRawValue>

Schedule

Gets the schedule details. All workflow arguments on this schedule are set as IEncodedRawValue.

public Schedule Schedule { get; }

Property Value

Schedule

TypedSearchAttributes

Gets the search attributes on the schedule.

public SearchAttributeCollection TypedSearchAttributes { get; }

Property Value

SearchAttributeCollection

Remarks

This is lazily converted on first access.