JsRunScript() private method

private JsRunScript ( string script, JavaScriptSourceContext sourceContext, string sourceUrl, JavaScriptValue &result ) : JavaScriptErrorCode
script string
sourceContext JavaScriptSourceContext
sourceUrl string
result JavaScriptValue
return JavaScriptErrorCode
        /// <summary>
        /// Executes a script.
        /// </summary>
        /// <remarks>
        /// Requires an active script context.
        /// </remarks>
        /// <param name="script">The script to run.</param>
        /// <param name="sourceContext">
        /// A 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 JavaScriptValue RunScript(string script, JavaScriptSourceContext sourceContext, string sourceName)
        {
            JavaScriptValue result;

            Native.ThrowIfError(Native.JsRunScript(script, sourceContext, sourceName, out result));
            return(result);
        }