Mono.Events.CreateNotifyEventHandlerDispatcher C# (CSharp) Метод

CreateNotifyEventHandlerDispatcher() публичный статический Метод

public static CreateNotifyEventHandlerDispatcher ( NotifyEventHandler handler ) : UnmanagedEventHandler
handler NotifyEventHandler
Результат UnmanagedEventHandler
		public static UnmanagedEventHandler CreateNotifyEventHandlerDispatcher (NotifyEventHandler handler)
		{
			return SafeDispatcher( (sender, calldata, closure)
						=> handler (NativeDependencyObjectHelper.FromIntPtr (closure),
								new NotifyEventArgs ()) );
		}
Events