Reflection
Navigated Event


Occurs when navigation is used.
Syntax
'Declaration
 
<SuppressMessageAttribute(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")>
Event Navigated As NavigatedEventHandler
'Usage
 
Dim instance As IWebControl
Dim handler As NavigatedEventHandler
 
AddHandler instance.Navigated, handler
[SuppressMessage(Category="Microsoft.Design", 
   CheckId="CA1009:DeclareEventHandlersCorrectly", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")]
event NavigatedEventHandler Navigated
Event Data

The event handler receives an argument of type NavigatedEventArgs containing data related to this event. The following NavigatedEventArgs properties provide information specific to this event.

PropertyDescription
UrlURL of the Web document.  
See Also