本文整理匯總了C#中MsieJavaScriptEngine.JsRt.Ie.IeJsValue類的典型用法代碼示例。如果您正苦於以下問題:C# IeJsValue類的具體用法?C# IeJsValue怎麽用?C# IeJsValue使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
IeJsValue類屬於MsieJavaScriptEngine.JsRt.Ie命名空間,在下文中一共展示了IeJsValue類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: JsRelease
internal static extern JsErrorCode JsRelease(IeJsValue reference, out uint count);
示例2: JsDeleteIndexedProperty
internal static extern JsErrorCode JsDeleteIndexedProperty(IeJsValue obj, IeJsValue index);
示例3: IeJsScriptException
/// <summary>
/// Initializes a new instance of the <see cref="IeJsScriptException"/> class
/// </summary>
/// <param name="code">The error code returned</param>
/// <param name="error">The JavaScript error object</param>
public IeJsScriptException(JsErrorCode code, IeJsValue error)
: this(code, error, "JavaScript Exception")
{ }
示例4: JsCreateObject
internal static extern JsErrorCode JsCreateObject(out IeJsValue obj);
示例5: JsCreateURIError
internal static extern JsErrorCode JsCreateURIError(IeJsValue message, out IeJsValue error);
示例6: JsConvertValueToString
internal static extern JsErrorCode JsConvertValueToString(IeJsValue value, out IeJsValue stringValue);
示例7: JsCreateExternalObject
internal static extern JsErrorCode JsCreateExternalObject(IntPtr data, JsObjectFinalizeCallback finalizeCallback, out IeJsValue obj);
示例8: JsSetIndexedProperty
internal static extern JsErrorCode JsSetIndexedProperty(IeJsValue obj, IeJsValue index, IeJsValue value);
示例9: JsSetProperty
internal static extern JsErrorCode JsSetProperty(IeJsValue obj, IeJsPropertyId propertyId, IeJsValue value, bool useStrictRules);
示例10: JsSetExternalData
internal static extern JsErrorCode JsSetExternalData(IeJsValue obj, IntPtr externalData);
示例11: JsCallFunction
internal static extern JsErrorCode JsCallFunction(IeJsValue function, IeJsValue[] arguments, ushort argumentCount, out IeJsValue result);
示例12: JsSetException
internal static extern JsErrorCode JsSetException(IeJsValue exception);
示例13: JsRunSerializedScript
internal static extern JsErrorCode JsRunSerializedScript(string script, byte[] buffer, JsSourceContext sourceContext, string sourceUrl, out IeJsValue result);
示例14: JsRunScript
internal static extern JsErrorCode JsRunScript(string script, JsSourceContext sourceContext, string sourceUrl, out IeJsValue result);
示例15: JsConvertValueToNumber
internal static extern JsErrorCode JsConvertValueToNumber(IeJsValue value, out IeJsValue numberValue);