using System;
namespace System.Runtime.InteropServices
{
/// Use instead.
// Token: 0x02000353 RID: 851
[Obsolete]
[Guid("b196b284-bab4-101a-b69c-00aa00341d07")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComImport]
public interface UCOMIConnectionPointContainer
{
/// Creates an enumerator of all the connection points supported in the connectable object, one connection point per IID.
/// On successful return, contains the interface pointer of the enumerator.
// Token: 0x06002347 RID: 9031
void EnumConnectionPoints(out UCOMIEnumConnectionPoints ppEnum);
/// Asks the connectable object if it has a connection point for a particular IID, and if so, returns the IConnectionPoint interface pointer to that connection point.
/// A reference to the outgoing interface IID whose connection point is being requested.
/// On successful return, contains the connection point that manages the outgoing interface .
// Token: 0x06002348 RID: 9032
void FindConnectionPoint(ref Guid riid, out UCOMIConnectionPoint ppCP);
}
}