LoadCompletedEventHandler Delegate

Definition

Represents the method that will handle the LoadCompleted event.

Important

LoadCompleted may be altered or unavailable for releases after Windows 8.1. Instead, use NavigationCompleted.

public delegate void LoadCompletedEventHandler(Platform::Object ^ sender, NavigationEventArgs ^ e);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(2931488645, 17404, 20012, 149, 195, 151, 174, 132, 234, 188, 142)]
class LoadCompletedEventHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(2931488645, 17404, 20012, 149, 195, 151, 174, 132, 234, 188, 142)]
public delegate void LoadCompletedEventHandler(object sender, NavigationEventArgs e);
Public Delegate Sub LoadCompletedEventHandler(sender As Object, e As NavigationEventArgs)

Parameters

sender
Object

Platform::Object

IInspectable

The source of the event.

e
NavigationEventArgs

The event data.

Attributes

Windows requirements

Device family
Windows 10 (introduced in 10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v1.0)

Applies to

See also