using System; namespace System.Runtime.InteropServices { /// Use instead. // Token: 0x02000354 RID: 852 [Obsolete] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [Guid("b196b285-bab4-101a-b69c-00aa00341d07")] [ComImport] public interface UCOMIEnumConnectionPoints { /// Retrieves a specified number of items in the enumeration sequence. /// S_OK if the parameter equals the parameter; otherwise, S_FALSE. /// The number of IConnectionPoint references to return in . /// On successful return, a reference to the enumerated connections. /// On successful return, a reference to the actual number of connections enumerated in . // Token: 0x06002349 RID: 9033 [PreserveSig] int Next(int celt, [MarshalAs(UnmanagedType.LPArray, SizeConst = 0, SizeParamIndex = 0)] [Out] UCOMIConnectionPoint[] rgelt, out int pceltFetched); /// Skips over a specified number of items in the enumeration sequence. /// S_OK if the number of elements skipped equals the parameter; otherwise, S_FALSE. /// The number of elements to skip in the enumeration. // Token: 0x0600234A RID: 9034 [PreserveSig] int Skip(int celt); /// Resets the enumeration sequence to the beginning. /// An HRESULT with the value S_OK. // Token: 0x0600234B RID: 9035 [PreserveSig] int Reset(); /// Creates another enumerator that contains the same enumeration state as the current one. /// On successful return, a reference to the newly created enumerator. // Token: 0x0600234C RID: 9036 void Clone(out UCOMIEnumConnectionPoints ppenum); } }