You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
#if NETFX
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.InteropServices.CustomMarshalers;
|
|
|
|
namespace IWshRuntimeLibrary
|
|
{
|
|
// Token: 0x0200002E RID: 46
|
|
[Guid("C7C3F5B6-88A3-11D0-ABCB-00A0C90FFFC0")]
|
|
[ClassInterface(ClassInterfaceType.None)]
|
|
[ComImport]
|
|
internal class FilesClass : IFileCollection, Files, IEnumerable
|
|
{
|
|
// // Token: 0x06000143 RID: 323
|
|
// [MethodImpl(MethodImplOptions.InternalCall)]
|
|
// internal extern FilesClass();
|
|
|
|
// Token: 0x17000087 RID: 135
|
|
[DispId(0)]
|
|
public virtual extern File this[[MarshalAs(UnmanagedType.Struct)] [In] object Key]
|
|
{
|
|
[DispId(0)]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
|
get;
|
|
}
|
|
|
|
// Token: 0x06000145 RID: 325
|
|
[DispId(-4)]
|
|
[TypeLibFunc(65)]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(EnumeratorToEnumVariantMarshaler))]
|
|
public virtual extern IEnumerator GetEnumerator();
|
|
|
|
// Token: 0x17000088 RID: 136
|
|
// (get) Token: 0x06000146 RID: 326
|
|
[DispId(1)]
|
|
public virtual extern int Count { [DispId(1)] [MethodImpl(MethodImplOptions.InternalCall)] get; }
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|