Difference between revisions of "CatTaskNeverSchedule class"
Nguyenduyan (talk | contribs) (Created page with "{{CGscriptClass_Template |Name=<nowiki>CatTaskNeverSchedule</nowiki> |Description=<nowiki>Schedule cattask to never now</nowiki> |Constructors= {{CGscriptConstructors_Template...") (Tag: visualeditor-switched) |
Nguyenduyan (talk | contribs) |
||
Line 10: | Line 10: | ||
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}} | {{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}} | ||
}} | }} | ||
+ | === <span style="color:#DF8621">'''Examples'''</span> === | ||
+ | <source lang="javascript"> | ||
+ | CatTaskScheduleHelper csHelper = new CatTaskScheduleHelper(); | ||
+ | number taskId = 54183; | ||
+ | CatTaskNeverSchedule schedule = new CatTaskNeverSchedule(); | ||
+ | csHelper.RescheduleByMetaDataId(taskId, schedule); | ||
+ | </source> |
Revision as of 03:27, 31 May 2017
CatTaskNeverSchedule
Schedule cattask to never now
Constructors
- () - Never now
Methods
- string ToString() - The string representation of the object.
Properties
- string ObjectTypeName { get; } - The name of the type of object.
- TypeInformation TypeInformation { get; } - Get information about this class.
Examples
CatTaskScheduleHelper csHelper = new CatTaskScheduleHelper();
number taskId = 54183;
CatTaskNeverSchedule schedule = new CatTaskNeverSchedule();
csHelper.RescheduleByMetaDataId(taskId, schedule);