@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Iterates through an array of STATPROPSTG structures. !!!!C# Definition: [ComImport] [Guid("00000139-0000-0000-c000-000000000046")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] interface IEnumSTATPROPSTG { int Next( uint count, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0), Out] STATPROPSTG[] elements, out uint pceltFetched); void Skip(uint count); void Reset(); [return: MarshalAs(UnmanagedType.Interface)] IEnumSTATPROPSTG Clone(); } !!!!User-Defined Types: [StructLayout(LayoutKind.Sequential)] internal struct STATPROPSTG { [MarshalAs(UnmanagedType.LPWStr)] public string lpwstrName; public uint propid; public ushort vt; } Documentation: IEnumSTATPROPSTG@msdn on MSDN
Edit Interfaces.IEnumS...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.