本文整理匯總了C#中MsieJavaScriptEngine.JsRt.Edge.EdgeJsValue類的典型用法代碼示例。如果您正苦於以下問題:C# EdgeJsValue類的具體用法?C# EdgeJsValue怎麽用?C# EdgeJsValue使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
EdgeJsValue類屬於MsieJavaScriptEngine.JsRt.Edge命名空間,在下文中一共展示了EdgeJsValue類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: JsGetProperty
internal static extern JsErrorCode JsGetProperty(EdgeJsValue obj, EdgeJsPropertyId propertyId, out EdgeJsValue value);
示例2: JsGetUndefinedValue
internal static extern JsErrorCode JsGetUndefinedValue(out EdgeJsValue undefinedValue);
示例3: JsGetTrueValue
internal static extern JsErrorCode JsGetTrueValue(out EdgeJsValue trueValue);
示例4: JsAddRef
internal static extern JsErrorCode JsAddRef(EdgeJsValue reference, out uint count);
示例5: JsRunScript
internal static extern JsErrorCode JsRunScript(string script, JsSourceContext sourceContext, string sourceUrl, out EdgeJsValue result);
示例6: JsCreateFunction
internal static extern JsErrorCode JsCreateFunction(EdgeJsNativeFunction nativeFunction, IntPtr externalData, out EdgeJsValue function);
示例7: JsGetAndClearException
internal static extern JsErrorCode JsGetAndClearException(out EdgeJsValue exception);
示例8: JsDefineProperty
internal static extern JsErrorCode JsDefineProperty(EdgeJsValue obj, EdgeJsPropertyId propertyId, EdgeJsValue propertyDescriptor, out bool result);
示例9: JsHasIndexedProperty
internal static extern JsErrorCode JsHasIndexedProperty(EdgeJsValue obj, EdgeJsValue index, out bool result);
示例10: JsHasProperty
internal static extern JsErrorCode JsHasProperty(EdgeJsValue obj, EdgeJsPropertyId propertyId, out bool hasProperty);
示例11: JsDeleteProperty
internal static extern JsErrorCode JsDeleteProperty(EdgeJsValue obj, EdgeJsPropertyId propertyId, bool useStrictRules, out EdgeJsValue result);
示例12: JsSetProperty
internal static extern JsErrorCode JsSetProperty(EdgeJsValue obj, EdgeJsPropertyId propertyId, EdgeJsValue value, bool useStrictRules);
示例13: JsGetOwnPropertyNames
internal static extern JsErrorCode JsGetOwnPropertyNames(EdgeJsValue obj, out EdgeJsValue propertyNames);
示例14: JsGetOwnPropertyDescriptor
internal static extern JsErrorCode JsGetOwnPropertyDescriptor(EdgeJsValue obj, EdgeJsPropertyId propertyId, out EdgeJsValue propertyDescriptor);
示例15: JsCallFunction
internal static extern JsErrorCode JsCallFunction(EdgeJsValue function, EdgeJsValue[] arguments, ushort argumentCount, out EdgeJsValue result);