DownloadFinishedEventHandler Delegate

WebKit .NET

[This is preliminary documentation and is subject to change.]

Represents the method that will handle the WebKitDownload.DownloadFinished event.

Namespace:  WebKit
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public delegate void DownloadFinishedEventHandler(
	Object sender,
	DownloadFinishedEventArgs e
)
Visual Basic (Declaration)
Public Delegate Sub DownloadFinishedEventHandler ( _
	sender As Object, _
	e As DownloadFinishedEventArgs _
)
Visual C++
public delegate void DownloadFinishedEventHandler(
	Object^ sender, 
	DownloadFinishedEventArgs^ e
)

Parameters

sender
Type: System..::.Object
The source of the event.
e
Type: WebKit..::.DownloadFinishedEventArgs
A DownloadFinishedEventArgs that contains the event data.

See Also