Class TaskTriggerInfo
Class TaskTriggerInfo
Inheritance
System.Object
TaskTriggerInfo
Namespace: MediaBrowser.Model.Tasks
Assembly: MediaBrowser.Model.dll
Syntax
public class TaskTriggerInfo
Fields
TriggerDaily
Declaration
public const string TriggerDaily = "DailyTrigger"
Field Value
Type | Description |
---|---|
System.String |
TriggerInterval
Declaration
public const string TriggerInterval = "IntervalTrigger"
Field Value
Type | Description |
---|---|
System.String |
TriggerStartup
Declaration
public const string TriggerStartup = "StartupTrigger"
Field Value
Type | Description |
---|---|
System.String |
TriggerSystemEvent
Declaration
public const string TriggerSystemEvent = "SystemEventTrigger"
Field Value
Type | Description |
---|---|
System.String |
TriggerWeekly
Declaration
public const string TriggerWeekly = "WeeklyTrigger"
Field Value
Type | Description |
---|---|
System.String |
Properties
DayOfWeek
Gets or sets the day of week.
Declaration
public DayOfWeek? DayOfWeek { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DayOfWeek> | The day of week. |
IntervalTicks
Gets or sets the interval.
Declaration
public long? IntervalTicks { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> | The interval. |
MaxRuntimeTicks
Gets or sets the maximum runtime ticks.
Declaration
public long? MaxRuntimeTicks { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> | The maximum runtime ticks. |
SystemEvent
Gets or sets the system event.
Declaration
public SystemEvent? SystemEvent { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<SystemEvent> | The system event. |
TimeOfDayTicks
Gets or sets the time of day.
Declaration
public long? TimeOfDayTicks { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> | The time of day. |
Type
Gets or sets the type.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | The type. |