MsieJavaScriptEngine.JsRt.JavaScriptContext.StartDebugging C# (CSharp) Method

StartDebugging() public static method

Starts debugging in the context.
public static StartDebugging ( Native debugApplication ) : void
debugApplication Native The debug application to use for debugging.
return void
        public static void StartDebugging(Native.IDebugApplication64 debugApplication)
        {
            if (!Environment.Is64BitProcess)
            {
                throw new InvalidOperationException();
            }
            Native.ThrowIfError(Native.JsStartDebugging(debugApplication));
        }