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