本文整理汇总了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);