コード例 #1
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSString GetSourceLine(JSScriptException e);
コード例 #2
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern int GetLineNumber(JSScriptException e);
コード例 #3
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSString GetStackTrace(JSScriptException e);
コード例 #4
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSString GetMessage(JSScriptException e);
コード例 #5
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSString GetFileName(JSScriptException e);
コード例 #6
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern void Release(JSContext context, JSScriptException e);
コード例 #7
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSValue GetException(JSScriptException e);
コード例 #8
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern void SetProperty(JSContext context, JSArray arr, int index, JSValue value, out JSScriptException error);
コード例 #9
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSObject ConstructCreate(JSContext context, JSFunction function, [In, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 3)] JSValue[] args, int numArgs, out JSScriptException error);
コード例 #10
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern bool HasProperty(JSContext context, JSObject obj, JSString key, out JSScriptException error);
コード例 #11
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSValue CopyProperty(JSContext context, JSArray arr, int index, out JSScriptException error);
コード例 #12
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSArray CopyOwnPropertyNames(JSContext context, JSObject obj, out JSScriptException error);
コード例 #13
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern void SetProperty(JSContext context, JSObject obj, JSString key, JSValue value, out JSScriptException error);
コード例 #14
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSValue CopyProperty(JSContext context, JSObject obj, JSString key, out JSScriptException error);
コード例 #15
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSFunction CreateCallback(JSContext context, IntPtr data, [MarshalAs(UnmanagedType.FunctionPtr)] JSCallback callback, out JSScriptException error);
コード例 #16
0
ファイル: V8Simple.cs プロジェクト: mortend/V8.Simple
 public static extern JSValue EvaluateCreate(JSContext context, JSString fileName, JSString code, out JSScriptException error);