Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
ITaskTrigger (Interfaces)
.
C# Definition:
[Guid("148BD52B-A2AB-11CE-B11F-00AA00530503"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITaskTrigger
{
int SetTrigger( ref TASK_TRIGGER pTrigger);
int GetTrigger( ref TASK_TRIGGER pTrigger);
int GetTriggerString([MarshalAs(UnmanagedType.LPWStr)] out string wszTrigger);
};
[StructLayout(LayoutKind.Sequential)]
public struct TASK_TRIGGER
{
[MarshalAs(UnmanagedType.U2)] public ushort cbTriggerSize;
[MarshalAs(UnmanagedType.U2)] public ushort Reserved1;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginYear;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginMonth;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginDay;
[MarshalAs(UnmanagedType.U2)] public ushort wEndYear;
[MarshalAs(UnmanagedType.U2)] public ushort wEndMonth;
[MarshalAs(UnmanagedType.U2)] public ushort wEndDay;
[MarshalAs(UnmanagedType.U2)] public ushort wStartHour;
[MarshalAs(UnmanagedType.U2)] public ushort wStartMinute;
[MarshalAs(UnmanagedType.U4)] public uint MinutesDuration;
[MarshalAs(UnmanagedType.U4)] public uint MinutesInterval;
[MarshalAs(UnmanagedType.U4)] public uint rgFlags;
[MarshalAs(UnmanagedType.U4)] public TASK_TRIGGER_TYPE TriggerType;
[MarshalAs(UnmanagedType.U2)] public ushort item1;
[MarshalAs(UnmanagedType.U2)] public ushort item2;
[MarshalAs(UnmanagedType.U2)] public ushort item3;
[MarshalAs(UnmanagedType.U2)] public ushort item4;
[MarshalAs(UnmanagedType.U2)] public ushort Reserved2;
[MarshalAs(UnmanagedType.U2)] public ushort wRandomMinutesInterval;
[MarshalAs(UnmanagedType.U2)] public ushort cbTriggerSize;
[MarshalAs(UnmanagedType.U2)] public ushort Reserved1;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginYear;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginMonth;
[MarshalAs(UnmanagedType.U2)] public ushort wBeginDay;
[MarshalAs(UnmanagedType.U2)] public ushort wEndYear;
[MarshalAs(UnmanagedType.U2)] public ushort wEndMonth;
[MarshalAs(UnmanagedType.U2)] public ushort wEndDay;
[MarshalAs(UnmanagedType.U2)] public ushort wStartHour;
[MarshalAs(UnmanagedType.U2)] public ushort wStartMinute;
[MarshalAs(UnmanagedType.U4)] public uint MinutesDuration;
[MarshalAs(UnmanagedType.U4)] public uint MinutesInterval;
[MarshalAs(UnmanagedType.U4)] public uint rgFlags;
[MarshalAs(UnmanagedType.U4)] public TASK_TRIGGER_TYPE TriggerType;
[MarshalAs(UnmanagedType.U2)] public ushort item1;
[MarshalAs(UnmanagedType.U2)] public ushort item2;
[MarshalAs(UnmanagedType.U2)] public ushort item3;
[MarshalAs(UnmanagedType.U2)] public ushort item4;
[MarshalAs(UnmanagedType.U2)] public ushort Reserved2;
[MarshalAs(UnmanagedType.U2)] public ushort wRandomMinutesInterval;
public ushort DaysInterval { get { return item1; } set { item1 = value; } }
public ushort WeeksInterval { get { return item1; } set { item1 = value; } }
public ushort rgfDaysOfTheWeek { get { return item2; } set { item2 = value; } }
public ushort wWhichWeek { get { return item1; } set { item1 = value; } }
public ushort rgfMonths { get { return item3; } set { item3 = value; } }
public uint rgfDays { get { return ((uint)item1 << 0) |
((uint)item2 << 16); }
set { item1 = (ushort)((value >> 0) & 0xFFFF);
item2 = (ushort)((value >> 16) & 0xFFFF); }}
static public TASK_TRIGGER CreateInstance()
{
TASK_TRIGGER obj = new TASK_TRIGGER();
obj.cbTriggerSize = (ushort)Marshal.SizeOf(obj);
return obj;
}
}
[StructLayout(LayoutKind.Sequential)]
public struct SYSTEMTIME
{
[MarshalAs(UnmanagedType.U2)] short Year;
[MarshalAs(UnmanagedType.U2)] short Month;
[MarshalAs(UnmanagedType.U2)] short DayOfWeek;
[MarshalAs(UnmanagedType.U2)] short Day;
[MarshalAs(UnmanagedType.U2)] short Hour;
[MarshalAs(UnmanagedType.U2)] short Minute;
[MarshalAs(UnmanagedType.U2)] short Second;
[MarshalAs(UnmanagedType.U2)] short Milliseconds;
}
VB Definition:
<ComImport> _
<Guid("TODO")> _
'TODO: Insert <InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _ if this doesn't derive from IDispatch
Interface ITaskTrigger
TODO
End Interface
User-Defined Types:
None.
Notes:
None.
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. There is some helper code below for actually using the iterator as the marshalling seemed impossible without resorting to the unmanaged helper functions in System.Runtime.InteropServices.Marshal. Not all methods have been tested, so be careful!
11/18/2010 12:43:14 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. The C# definition contains some helper code. Not all methods have been tested, so be careful!
8/19/2008 5:14:58 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. There is some helper code below. Not all methods have been tested, so be careful!
4/17/2012 2:17:08 PM - -81.149.190.75
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. The C# definition contains some helper code. Not all methods have been tested, so be careful!
7/24/2008 4:03:27 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. Generally this is useless - use ITask (which inherits from IScheduledWorkItem) instead. Not all methods have been tested, so be careful!
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. The C# definition contains some helper code. Not all methods have been tested, so be careful!
8/19/2008 5:14:58 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. There is some helper code below for actually using the iterator as the marshalling seemed impossible without resorting to the unmanaged helper functions in System.Runtime.InteropServices.Marshal. Not all methods have been tested, so be careful!
11/18/2010 12:43:14 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. The C# definition contains some helper code. Not all methods have been tested, so be careful!
7/24/2008 4:03:27 PM - -203.167.226.133
Part of the Task Scheduler 1.0 Interfaces, which consists of IEnumWorkItems, ITask, ITaskScheduler, ITaskTrigger and IScheduledWorkItem. There is some helper code below. Not all methods have been tested, so be careful!
4/17/2012 2:17:08 PM - -81.149.190.75
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.