// // System.Runtime.InteropServices.UCOMIEnumConnectionPoints.cs // // Author: // Andreas Nahr (ClassDevelopment@A-SoftTech.com) // using System; namespace System.Runtime.InteropServices { [Guid ("b196b285-bab4-101a-b69c-00aa00341d07")] [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)] public interface UCOMIEnumConnectionPoints { void Clone (out UCOMIEnumConnectionPoints ppenum); int Next (int celt, [Out] UCOMIConnectionPoint[] rgelt, out int pceltFetched); int Reset (); int Skip (int celt); } }