2 writes to JSHandle
System.Runtime.InteropServices.JavaScript (2)
System\Runtime\InteropServices\JavaScript\JSObject.References.cs (1)
33JSHandle = jsHandle;
System\Runtime\InteropServices\JavaScript\JSProxyContext.cs (1)
491jso.JSHandle = IntPtr.Zero;
11 references to JSHandle
System.Runtime.InteropServices.JavaScript (11)
System\Runtime\InteropServices\JavaScript\JSFunctionBinding.cs (1)
239var functionHandle = (int)jsFunction.JSHandle;
System\Runtime\InteropServices\JavaScript\JSObject.References.cs (4)
37public override bool Equals([NotNullWhen(true)] object? obj) => obj is JSObject other && JSHandle == other.JSHandle; 40public override int GetHashCode() => (int)JSHandle; 43public override string ToString() => $"(js-obj js '{JSHandle}')";
System\Runtime\InteropServices\JavaScript\JSProxyContext.cs (1)
489var jsHandle = jso.JSHandle;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Exception.cs (1)
90slot.JSHandle = jsException.JSHandle;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.JSObject.cs (1)
62slot.JSHandle = value.JSHandle;
System\Runtime\InteropServices\JavaScript\Marshaling\JSMarshalerArgument.Task.cs (3)
467arg_handle.slot.JSHandle = holder.JSHandle; 502arg_handle.slot.JSHandle = holder.JSHandle; 536arg_handle.slot.JSHandle = holder.JSHandle;