using System; namespace System.Runtime.InteropServices { /// Use instead. // Token: 0x020002F6 RID: 758 [Obsolete] [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public struct CONNECTDATA { /// Represents a pointer to the IUnknown interface on a connected advisory sink. The caller must call IUnknown::Release on this pointer when the CONNECTDATA structure is no longer needed. // Token: 0x04000CD4 RID: 3284 [MarshalAs(UnmanagedType.Interface)] public object pUnk; /// Represents a connection token that is returned from a call to . // Token: 0x04000CD5 RID: 3285 public int dwCookie; } }