Skip to content

JSCallback delegate

Represents a low-level function or method call or callback from JavaScript into .NET.

C#
public delegate JSValue JSCallback(JSCallbackArgs args);
parameterdescription
argsProvides access to the arguments for the call, along with the this argument and an optional context object.

Return Value

The return value as a JS value.

See Also

Released under the MIT license