Microsoft SDK for Java

IEnumConnectionPoints Interface

This interface of the com.ms.com package enumerates connection points.

To create a connectable object, you need to implement objects that provide four related interfaces:

IConnectionPointContainer indicates the existence of the outgoing interfaces, and provides access to an enumerator sub-object with the IEnumConnectionPoints interface. It also provides a connection point sub-object with the IConnectionPoint interface. The IConnectionPoint interface provides access to an enumerator sub-object with the IEnumConnections interface.

Note   The IEnumConnectionPoints interface was added as of versions 2925 through 3167 of the Microsoft virtual machine.

public interface IEnumConnectionPoints extends IUnknown
{
  // Methods
  public IEnumConnectionPoints Clone();
  public void Next(int celt, IConnectionPoint[] rgelt, int[] pceltFetched);
  public void Reset();
  public void Skip(int celt);
}

© 1999 Microsoft Corporation. All rights reserved. Terms of use.