Skip to content

JSObject Explicit operator (1 of 2)

Explicitly converts a JSValue to a nullable JSObject.

C#
public static explicit operator JSObject?(JSValue value)
parameterdescription
valueThe JSValue to convert.

Return Value

The JSObject if it was successfully created or null if it was failed.

See Also


JSObject Explicit operator (2 of 2)

Explicitly converts a JSValue to a JSObject.

C#
public static explicit operator JSObject(JSValue value)
parameterdescription
valueThe JSValue to convert.

Return Value

JSObject struct created based on this JSValue.

Exceptions

exceptioncondition
InvalidCastExceptionThrown when the T struct cannot be created based on this JSValue.

See Also

Released under the MIT license