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