NavigationEventHandler Delegate
Represents the method that will handle navigation events in IIS Manager.
Assembly: Microsoft.Web.Management (in Microsoft.Web.Management.dll)
Parameters
- sender
-
Type:
System.Object
The source of the event.
- e
-
Type:
Microsoft.Web.Management.Client.NavigationEventArgs
A NavigationEventArgs that contains the event data.
The NavigationEventHandler delegate enables custom modules to take action when navigation occurs.
When you create a NavigationEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.
The following example adds the custom navigation event handler OnNavigationServiceNavigationPerformed.
Show: