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.
51 lines
1.5 KiB
51 lines
1.5 KiB
#if NETFX
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.InteropServices.CustomMarshalers;
|
|
|
|
namespace IWshRuntimeLibrary
|
|
{
|
|
// Token: 0x0200002A RID: 42
|
|
[Guid("C7C3F5B4-88A3-11D0-ABCB-00A0C90FFFC0")]
|
|
[ClassInterface(ClassInterfaceType.None)]
|
|
[ComImport]
|
|
internal class FoldersClass : IFolderCollection, Folders, IEnumerable
|
|
{
|
|
// // Token: 0x0600012B RID: 299
|
|
// [MethodImpl(MethodImplOptions.InternalCall)]
|
|
// internal extern FoldersClass();
|
|
|
|
// Token: 0x0600012C RID: 300
|
|
[DispId(2)]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
|
public virtual extern Folder Add([MarshalAs(UnmanagedType.BStr)] [In] string Name);
|
|
|
|
// Token: 0x17000079 RID: 121
|
|
[DispId(0)]
|
|
public virtual extern Folder this[[MarshalAs(UnmanagedType.Struct)] [In] object Key]
|
|
{
|
|
[DispId(0)]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
|
get;
|
|
}
|
|
|
|
// Token: 0x0600012E RID: 302
|
|
[DispId(-4)]
|
|
[TypeLibFunc(65)]
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(EnumeratorToEnumVariantMarshaler))]
|
|
public virtual extern IEnumerator GetEnumerator();
|
|
|
|
// Token: 0x1700007A RID: 122
|
|
// (get) Token: 0x0600012F RID: 303
|
|
[DispId(1)]
|
|
public virtual extern int Count { [DispId(1)] [MethodImpl(MethodImplOptions.InternalCall)] get; }
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|