2 instantiations of JSException
System.Runtime.InteropServices.JavaScript (2)
System\Runtime\InteropServices\JavaScript\JSFunctionBinding.cs (1)
444
throw new
JSException
(message);
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Exception.cs (1)
45
value = new
JSException
(message!, jsException);
11 references to JSException
System.Net.WebSockets.Client (2)
System\Net\WebSockets\BrowserWebSockets\BrowserWebSocket.cs (2)
405
catch (
JSException
ex)
450
catch (
JSException
ex)
System.Runtime.InteropServices.JavaScript (9)
System\Runtime\InteropServices\JavaScript\JSException.cs (1)
90
return obj is
JSException
other && other.jsException == jsException;
System\Runtime\InteropServices\JavaScript\JSObject.cs (6)
50
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not a bool.</remarks>
67
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not an integer.</remarks>
82
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not a number.</remarks>
97
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not a string.</remarks>
112
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not an object.</remarks>
127
/// <remarks>Will throw <see cref="
JSException
"/> when the property value is not an array.</remarks>
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Exception.cs (2)
70
var
jse = cpy as
JSException
;