OnLogOnUserChanged Method
Event handler that is invoked by the framework when the ViewApp logged in user has changed. When overriding this method in derived class, call the base.OnLogOnUserChanged
before any custom logic is added to the overriden method.
Syntax
'Declaration Protected Overridable Sub OnLogOnUserChanged( _ ByVal sender As Object, _ ByVal e As EventArgs _ )
'Usage Dim instance As WebControl Dim sender As Object Dim e As EventArgs instance.OnLogOnUserChanged(sender, e)
protected: virtual void OnLogOnUserChanged( Object^ sender, EventArgs^ e )
Parameters
- sender
- Reference to the sender.
- e
- Event args.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also