本文整理汇总了C#中Jint.Native.JsValue.Invoke方法的典型用法代码示例。如果您正苦于以下问题:C# JsValue.Invoke方法的具体用法?C# JsValue.Invoke怎么用?C# JsValue.Invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Jint.Native.JsValue
的用法示例。
在下文中一共展示了JsValue.Invoke方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CallFunction
/// <summary>
/// Calls a javascript function encapsulated by JsValue
/// and returns it's result.
/// </summary>
public JsValue CallFunction(JsValue function, object thisObject, params object[] args) {
object t = thisObject ?? (object)this;
try {
return function.Invoke(JsValue.FromObject(jsEngine, t), args.ToJsValueArray(jsEngine));
} catch (JavaScriptException jex) {
StringBuilder sb = new StringBuilder("JavaScript error: " + jex.Message + "\r\n");
sb.AppendLine(string.Format(" at line {0} column {1}", jex.LineNumber, jex.Column));
sb.AppendLine(jex.Location.Source);
sb.AppendLine(jex.StackTrace);
TShock.Log.ConsoleError(sb.ToString());
} catch (ParserException pex) {
StringBuilder sb = new StringBuilder("JavaScript parser error: " + pex.Message + "\r\n");
sb.AppendLine(string.Format(" at line {0} column {1}", pex.LineNumber, pex.Column));
sb.AppendLine(pex.Source);
sb.AppendLine(pex.StackTrace);
TShock.Log.ConsoleError(sb.ToString());
} catch (Exception ex) {
TShock.Log.ConsoleError(ex.ToString());
}
return JsValue.Undefined;
}