NavigatedEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a method that handles the app navigation event.
public delegate void NavigatedEventHandler(Platform::Object ^ sender, IWebUINavigatedEventArgs ^ e);
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(2062839782, 16586, 20041, 167, 214, 219, 219, 51, 12, 209, 163)]
class NavigatedEventHandler : MulticastDelegate
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(2062839782, 16586, 20041, 167, 214, 219, 219, 51, 12, 209, 163)]
public delegate void NavigatedEventHandler(object sender, IWebUINavigatedEventArgs e);
var navigatedEventHandlerHandler = function(sender, e){
/* Your code */
}
Public Delegate Sub NavigatedEventHandler(sender As Object, e As IWebUINavigatedEventArgs)
Parameters
- sender
-
Object
Platform::Object
IInspectable
The sender.
The event information.
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|