IEnumWorkItems (Interfaces)
Last changed: -203.167.226.133

.
Summary
There is some helper code in ITask, for encapsulating the use of IEnumWorkItems, creating the TASK_TRIGGER structure (used by ITaskTrigger), and creating ITaskScheduler. Not all methods have been tested, so be careful!

C# Definition:

    [Guid("148BD528-A2AB-11CE-B11F-00AA00530503"),InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    public interface IEnumWorkItems
    {
    int Next(uint celt, out IntPtr names,out uint namecount);
    int Skip(uint celt);
    int Reset() ;
    int Clone([MarshalAs(UnmanagedType.IUnknown)] out object EnumWorkItems);
    };

VB Definition:

<ComImport> _
<Guid("TODO")> _
'TODO: Insert <InterfaceType(ComInterfaceType.InterfaceIsIUnknown)> _ if this doesn't derive from IDispatch
Interface IEnumWorkItems
   TODO
End Interface

User-Defined Types:

None.

Notes:

None.

Documentation