Property | Type | Description |
---|
Method | Description | |
---|---|---|
Equals ( object obj ) : bool |
Determines whether the specified Schedule is equal to the current Schedule.
|
|
GetHashCode ( ) : int |
Gets a hash code for the Schedule.
|
|
IsDue ( ) : bool |
Checks whether the Schedule is due at the present system time.
|
|
Schedule ( ) : System |
Initializes a new instance of the Schedule class.
|
|
Schedule ( string name ) : System |
Initializes a new instance of the Schedule class. Default Rule of '* * * * *' is used. |
|
Schedule ( string name, string rule ) : System |
Initializes a new instance of the Schedule class.
|
|
Schedule ( string name, string rule, string description ) : System |
Initializes a new instance of the Schedule class.
|
|
Schedule ( string name, string rule, string description, bool useLocalTime ) : System |
Initializes a new instance of the Schedule class.
|
|
ToString ( ) : string |
Gets the string representation of Schedule.
|
public Equals ( object obj ) : bool | ||
obj | object | The |
return | bool |
public Schedule ( string name ) : System | ||
name | string | Name of the schedule. |
return | System |
public Schedule ( string name, string rule ) : System | ||
name | string | Name of the schedule. |
rule | string | Rule formated in UNIX crontab syntax. |
return | System |
public Schedule ( string name, string rule, string description ) : System | ||
name | string | Name of the schedule. |
rule | string | Rule formated in UNIX crontab syntax. |
description | string | Description of defined schedule. |
return | System |
public Schedule ( string name, string rule, string description, bool useLocalTime ) : System | ||
name | string | Name of the schedule. |
rule | string | Rule formated in UNIX crontab syntax. |
description | string | Description of defined schedule. |
useLocalTime | bool | Flag that determines whether to use local time for schedule. |
return | System |