Espresso.NativeV8JsInterOp.ArgGetObject C# (CSharp) Method

ArgGetObject() private method

private ArgGetObject ( IntPtr callingArgsPtr, int index ) : Espresso.JsValue
callingArgsPtr System.IntPtr
index int
return Espresso.JsValue
        internal static extern JsValue ArgGetObject(IntPtr callingArgsPtr, int index);
        //---------------------------------------------------------------------------------

Usage Example

Example #1
0
        public object GetArgAsObject(int index)
        {
            JsValue output = new JsValue();

            NativeV8JsInterOp.ArgGetObject(this.metArgsPtr, index, ref output);
            return(this.context.Converter.FromJsValue(ref output));
        }
All Usage Examples Of Espresso.NativeV8JsInterOp::ArgGetObject