JsStartDebugging() private method

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

            IeJsErrorHelpers.ThrowIfError(IeNativeMethods.JsStartDebugging(debugApplication));
        }