Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

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);
}
}