EventSourceTconnect Method |
Connects the host event source to the specified script handler function.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public EventConnection<T> connect(
Object scriptFunc
)
Public Function connect (
scriptFunc As Object
) As EventConnection(Of T)
public:
EventConnection<T>^ connect(
Object^ scriptFunc
)
member connect :
scriptFunc : Object -> EventConnection<'T>
Parameters
- scriptFunc Object
- The script function that will handle the event.
Return Value
EventConnectionTAn
EventConnectionT that represents the connection.
See Also