UserChangedDelegate Delegate
- Last UpdatedNov 06, 2025
- 1 minute read
UserChangedDelegate is the delegate declaration for catching the UserChanged event.
'Declaration
Public Delegate Sub UserChangedDelegate( _
ByVal sender As Object, _
ByVal e As UserEventArgs _
)
public delegate void UserChangedDelegate(
object sender,
UserEventArgs e
)
Parameters
- sender
Required. Holds the object, which is the sender, that raised the event.
- e
Required. Holds the arguments that identifies the new user.