@@ -20,12 +20,12 @@ internal interface IAction
20
20
}
21
21
22
22
[ ComImport , Guid ( "02820E19-7B98-4ED2-B2E8-FDCCCEFF619B" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
23
- internal interface IActionCollection : IEnumerable
23
+ internal interface IActionCollection
24
24
{
25
25
int Count { get ; }
26
26
IAction this [ int index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
27
27
[ return : MarshalAs ( UnmanagedType . Interface ) ]
28
- new IEnumerator GetEnumerator ( ) ;
28
+ IEnumerator GetEnumerator ( ) ;
29
29
string XmlText { [ return : MarshalAs ( UnmanagedType . BStr ) ] get ; [ param: In , MarshalAs ( UnmanagedType . BStr ) ] set ; }
30
30
[ return : MarshalAs ( UnmanagedType . Interface ) ]
31
31
IAction Create ( [ In ] TaskActionType Type ) ;
@@ -243,12 +243,12 @@ internal interface IRegisteredTask
243
243
}
244
244
245
245
[ ComImport , Guid ( "86627EB4-42A7-41E4-A4D9-AC33A72F2D52" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
246
- internal interface IRegisteredTaskCollection : IEnumerable
246
+ internal interface IRegisteredTaskCollection
247
247
{
248
248
int Count { get ; }
249
249
IRegisteredTask this [ object index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
250
250
[ return : MarshalAs ( UnmanagedType . Interface ) ]
251
- new IEnumerator GetEnumerator ( ) ;
251
+ IEnumerator GetEnumerator ( ) ;
252
252
}
253
253
254
254
[ ComImport , Guid ( "416D8B73-CB41-4EA1-805C-9BE9A5AC4A74" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
@@ -301,12 +301,12 @@ internal interface IRunningTask
301
301
}
302
302
303
303
[ ComImport , Guid ( "6A67614B-6828-4FEC-AA54-6D52E8F1F2DB" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
304
- internal interface IRunningTaskCollection : IEnumerable
304
+ internal interface IRunningTaskCollection
305
305
{
306
306
int Count { get ; }
307
307
IRunningTask this [ object index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
308
308
[ return : MarshalAs ( UnmanagedType . Interface ) ]
309
- new IEnumerator GetEnumerator ( ) ;
309
+ IEnumerator GetEnumerator ( ) ;
310
310
}
311
311
312
312
[ ComImport , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , Guid ( "754DA71B-4385-4475-9DD9-598294FA3641" ) , System . Security . SuppressUnmanagedCodeSecurity ]
@@ -374,21 +374,21 @@ internal interface ITaskFolder
374
374
}
375
375
376
376
[ ComImport , Guid ( "79184A66-8664-423F-97F1-637356A5D812" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
377
- internal interface ITaskFolderCollection : IEnumerable
377
+ internal interface ITaskFolderCollection
378
378
{
379
379
int Count { get ; }
380
380
ITaskFolder this [ object index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
381
381
[ return : MarshalAs ( UnmanagedType . Interface ) ]
382
- new IEnumerator GetEnumerator ( ) ;
382
+ IEnumerator GetEnumerator ( ) ;
383
383
}
384
384
385
385
[ ComImport , Guid ( "B4EF826B-63C3-46E4-A504-EF69E4F7EA4D" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
386
- internal interface ITaskNamedValueCollection : IEnumerable
386
+ internal interface ITaskNamedValueCollection
387
387
{
388
388
int Count { get ; }
389
389
ITaskNamedValuePair this [ int index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
390
390
[ return : MarshalAs ( UnmanagedType . Interface ) ]
391
- new IEnumerator GetEnumerator ( ) ;
391
+ IEnumerator GetEnumerator ( ) ;
392
392
[ return : MarshalAs ( UnmanagedType . Interface ) ]
393
393
ITaskNamedValuePair Create ( [ In , MarshalAs ( UnmanagedType . BStr ) ] [ NotNull ] string Name , [ In , MarshalAs ( UnmanagedType . BStr ) ] string Value ) ;
394
394
void Remove ( [ In ] int index ) ;
@@ -545,12 +545,12 @@ internal interface ITrigger
545
545
}
546
546
547
547
[ ComImport , Guid ( "85DF5081-1B24-4F32-878A-D9D14DF4CB77" ) , InterfaceType ( ComInterfaceType . InterfaceIsDual ) , System . Security . SuppressUnmanagedCodeSecurity ]
548
- internal interface ITriggerCollection : IEnumerable
548
+ internal interface ITriggerCollection
549
549
{
550
550
int Count { get ; }
551
551
ITrigger this [ int index ] { [ return : MarshalAs ( UnmanagedType . Interface ) ] get ; }
552
552
[ return : MarshalAs ( UnmanagedType . Interface ) ]
553
- new IEnumerator GetEnumerator ( ) ;
553
+ IEnumerator GetEnumerator ( ) ;
554
554
[ return : MarshalAs ( UnmanagedType . Interface ) ]
555
555
ITrigger Create ( [ In ] TaskTriggerType Type ) ;
556
556
void Remove ( [ In , MarshalAs ( UnmanagedType . Struct ) ] object index ) ;
0 commit comments