JsStartDebugging() private method

private JsStartDebugging ( IDebugApplication32 debugApplication ) : JavaScriptErrorCode
debugApplication IDebugApplication32
return JavaScriptErrorCode
 /// <summary>
 /// Starts debugging in the context.
 /// </summary>
 /// <param name="debugApplication">The debug application to use for debugging.</param>
 public static void StartDebugging(Native.IDebugApplication32 debugApplication)
 {
     if (Environment.Is64BitProcess)
     {
         throw new InvalidOperationException();
     }
     Native.ThrowIfError(Native.JsStartDebugging(debugApplication));
 }