Gets a reference to the JavaScript object that raised the event.
Public Delegate Sub ScriptEventHandler ( _ sender As ScriptObject, _ args As ScriptObject _ )
Dim instance As New ScriptEventHandler(AddressOf HandlerMethod)
public delegate void ScriptEventHandler( ScriptObject sender, ScriptObject args )
ASP.NET AJAX behaviors and controls have a common event signature:
The first parameter is a reference to the ASP.NET AJAX control or behavior that raised the event.
The second parameter is an arbitrary complex type.
You could create a custom event delegate to provide this functionality. Because this is a common need, the ScriptEventHandler class is provided as a convenience.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.