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