Gets a reference to the JavaScript object that raised the event.
Namespace:
System.Windows.Browser
Assembly:
System.Windows.Browser (in System.Windows.Browser.dll)
Visual Basic (Declaration)
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:
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.
Reference