Class ScheduledTask
Deprecated: use WindowsScheduledTask for Windows scheduled tasks or ScheduledCronTask for cron jobs. Information about a scheduled task.
Implements
Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
[Obsolete]
public sealed class ScheduledTask : IMessage<ScheduledTask>, IEquatable<ScheduledTask>, IDeepCloneable<ScheduledTask>, IBufferMessage, IMessage
Constructors
ScheduledTask()
Declaration
public ScheduledTask()
ScheduledTask(ScheduledTask)
Declaration
public ScheduledTask(ScheduledTask other)
Parameters
| Type | Name | Description |
|---|---|---|
| ScheduledTask | other |
Properties
Author
The account name that authored or last modified the scheduled task.
Declaration
public string Author { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Comment
A comment or description for the task.
Declaration
public string Comment { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Hour
The hour of the day (0-23).
Declaration
public int Hour { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Minute
The minute of the hour (0-59).
Declaration
public int Minute { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Month
The month of the year (1-12).
Declaration
public int Month { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
MonthDay
The day of the month (1-31).
Declaration
public int MonthDay { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
WeekDay
The day of the week (0-6, Sunday=0).
Declaration
public int WeekDay { get; set; }
Property Value
| Type | Description |
|---|---|
| int |