Mono.Events.CreateDownloadProgressEventArgsEventHandlerDispatcher C# (CSharp) 메소드

CreateDownloadProgressEventArgsEventHandlerDispatcher() 공개 정적인 메소드

public static CreateDownloadProgressEventArgsEventHandlerDispatcher ( EventHandler handler ) : UnmanagedEventHandler
handler EventHandler
리턴 UnmanagedEventHandler
		public static UnmanagedEventHandler CreateDownloadProgressEventArgsEventHandlerDispatcher (EventHandler <DownloadProgressEventArgs> handler)
		{
			return SafeDispatcher ( (sender, calldata, closure)
						=> handler (NativeDependencyObjectHelper.FromIntPtr (closure),
							    new DownloadProgressEventArgs (calldata)) );
		}
Events