コード例 #1
0
 public static extern JsErrorCode JsGetPropertyIdType(JsPropertyIdRef propertyId, out JsPropertyIdType propertyIdType);
コード例 #2
0
 public static extern JsErrorCode JsGetPropertyIdFromSymbol(JsValueRef symbol, out JsPropertyIdRef propertyId);
コード例 #3
0
 public static extern JsErrorCode JsHasOwnProperty(JsValueRef @object, JsPropertyIdRef propertyId, out bool hasOwnProperty);
コード例 #4
0
 public static extern JsErrorCode JsGetSymbolFromPropertyId(JsPropertyIdRef propertyId, out JsValueRef symbol);
コード例 #5
0
 public static extern JsErrorCode JsCreatePropertyId(string name, ulong length, out JsPropertyIdRef propertyId);
コード例 #6
0
 public static extern JsErrorCode JsCopyPropertyId(JsPropertyIdRef propertyId, char[] buffer, ulong bufferSize, out ulong length);
コード例 #7
0
 public static extern JsErrorCode JsDefineProperty(JsValueRef @object, JsPropertyIdRef propertyId, JsValueRef propertyDescriptor, out bool result);
コード例 #8
0
 public static extern JsErrorCode JsDeleteProperty(JsValueRef @object, JsPropertyIdRef propertyId, bool useStrictRules, out JsValueRef result);
コード例 #9
0
 public static extern JsErrorCode JsSetProperty(JsValueRef @object, JsPropertyIdRef propertyId, JsValueRef value, bool useStrictRules);
コード例 #10
0
 public static extern JsErrorCode JsGetOwnPropertyDescriptor(JsValueRef @object, JsPropertyIdRef propertyId, out JsValueRef propertyDescriptor);
コード例 #11
0
 public static extern JsErrorCode JsGetProperty(JsValueRef @object, JsPropertyIdRef propertyId, out JsValueRef value);