Microsoft SDK for Java

IEnumConnections Interface

This interface of the com.ms.com package enumerates the current connections for a connectable object.

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 IEnumConnections interface was added as of versions 2925 through 3167 of the Microsoft virtual machine.

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

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