示例#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);