e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
19 lines
691 B
C#
19 lines
691 B
C#
namespace System.Web.Services.Interop {
|
|
using System;
|
|
using System.Threading;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
[ComImport(), Guid("1AF04045-6659-4aaa-9F4B-2741AC56224B"), InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
|
|
[SuppressUnmanagedCodeSecurity]
|
|
internal interface INotifyConnection2 {
|
|
[return: MarshalAs(UnmanagedType.Interface)]
|
|
INotifySink2 RegisterNotifySource(
|
|
[In, MarshalAs(UnmanagedType.Interface)] INotifySource2 in_pNotifySource);
|
|
|
|
|
|
void UnregisterNotifySource(
|
|
[In, MarshalAs(UnmanagedType.Interface)] INotifySource2 in_pNotifySource);
|
|
}
|
|
}
|