JsRunSerializedScript() приватный Метод

private JsRunSerializedScript ( string script, byte buffer, JsSourceContext sourceContext, string sourceUrl, IeJsValue &result ) : JsErrorCode
script string
buffer byte
sourceContext JsSourceContext
sourceUrl string
result IeJsValue
Результат JsErrorCode
Пример #1
0
        /// <summary>
        /// Runs a serialized script
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="script">The source code of the serialized script</param>
        /// <param name="buffer">The serialized script</param>
        /// <param name="sourceContext">The cookie identifying the script that can be used by script contexts that have debugging enabled</param>
        /// <param name="sourceName">The location the script came from</param>
        /// <returns>The result of the script, if any</returns>
        public static IeJsValue RunScript(string script, byte[] buffer, JsSourceContext sourceContext, string sourceName)
        {
            IeJsValue result;

            IeJsErrorHelpers.ThrowIfError(IeNativeMethods.JsRunSerializedScript(script, buffer, sourceContext, sourceName, out result));

            return(result);
        }