Remote Script Page Class Library

RemoteScriptEventHandler Delegate

Delegate for handling the remote script request event

[Visual Basic]
Public Delegate Function Sub  RemoteScriptEventHandler( _ 
   ByVal sender As Object, _ 
   ByVal remoteScriptAction As String, _ 
   ByVal requestedReturnType As RemoteScriptReturnType _ 
)
[C#]
public delegate void RemoteScriptEventHandler(
   object sender,
   string remoteScriptAction,
   RemoteScriptReturnType requestedReturnType
)
[C++]
public __gc __delegate void RemoteScriptEventHandler(
   Object* sender,
   String* remoteScriptAction,
   RemoteScriptReturnType requestedReturnType
)

[JScript] In JScript, you can use the delegates defined by a type, but you cannot define your own.

Requirements

Namespace: RemoteScript.Pages

Assembly: RemoteScript (in RemoteScript.dll)

See Also

RemoteScript.Pages Namespace