Ejemplo n.º 1
0
 public static extern JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef @object, JSStringRef propertyName);
Ejemplo n.º 2
0
 public static extern void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef accumulator, JSStringRef propertyName);
Ejemplo n.º 3
0
 public static extern bool JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef @object, JSStringRef propertyName, JSValueRef value);
Ejemplo n.º 4
0
 public static extern void JSObjectSetProperty(JSContextRef ctx, JSObjectRef @object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, /* (JSValueRef *) */ IntPtr exception);
Ejemplo n.º 5
0
 public static extern bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef @object, JSStringRef propertyName, /* (JSValueRef *) */ IntPtr exception);
Ejemplo n.º 6
0
 public static extern JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, /* (JSValueRef *) */ IntPtr exception);
Ejemplo n.º 7
0
 public static extern JSStringRef JSStringRetain(JSStringRef @string);
Ejemplo n.º 8
0
 public static extern bool JSStringIsEqual(JSStringRef a, JSStringRef b);
Ejemplo n.º 9
0
 public static extern bool JSStringIsEqualToUTF8CString(JSStringRef a, byte[] b);
Ejemplo n.º 10
0
 public static extern UIntPtr JSStringGetMaximumUTF8CStringSize(JSStringRef @string);
Ejemplo n.º 11
0
 public static extern UIntPtr JSStringGetUTF8CString(JSStringRef @string, byte[] buffer, UIntPtr bufferSize);
Ejemplo n.º 12
0
 public static extern string JSStringGetCharactersPtr(JSStringRef @string);
Ejemplo n.º 13
0
 public static extern UIntPtr JSStringGetLength(JSStringRef @string);
Ejemplo n.º 14
0
 public static extern void JSStringRelease(JSStringRef @string);
Ejemplo n.º 15
0
 public static extern bool JSObjectDeletePrivateProperty(JSContextRef ctx, JSObjectRef @object, JSStringRef propertyName);
Ejemplo n.º 16
0
 public static extern JSObjectRef JSObjectMakeFunctionWithCallback(JSContextRef ctx, JSStringRef name, JSObjectCallAsFunctionCallback callAsFunction);
Ejemplo n.º 17
0
 public static extern JSValueRef JSValueMakeFromJSONString(JSContextRef ctx, JSStringRef @string);
Ejemplo n.º 18
0
 public static extern JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, uint parameterCount, JSStringRef[] parameterNames, JSStringRef body, JSStringRef sourceURL, int startingLineNumber, /* (JSValueRef *) */ IntPtr exception);
Ejemplo n.º 19
0
 public static extern bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, /* (JSValueRef *) */ IntPtr exception);
Ejemplo n.º 20
0
 public static extern void JSGlobalContextSetName(JSGlobalContextRef ctx, JSStringRef name);