////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

        public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
        {
            //
            // Writes a dump to a file.
            //

            LoggingUtils.PrintFunction();

            try
            {
                if (AttachedEngine == null)
                {
                    throw new InvalidOperationException();
                }

                LoggingUtils.RequireOk(AttachedEngine.NativeDebugger.NativeProgram.WriteDump(DUMPTYPE, pszDumpUrl));

                LoggingUtils.RequireOk(AttachedEngine.JavaDebugger.JavaProgram.WriteDump(DUMPTYPE, pszDumpUrl));

                return(Constants.S_OK);
            }
            catch (Exception e)
            {
                LoggingUtils.HandleException(e);

                return(Constants.E_FAIL);
            }
        }
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    public int WriteDump (enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
    {
      // 
      // Writes a dump to a file.
      // 

      LoggingUtils.PrintFunction ();

      try
      {
        throw new NotImplementedException ();
      }
      catch (NotImplementedException e)
      {
        LoggingUtils.HandleException (e);

        return Constants.E_NOTIMPL;
      }
    }
Example #3
0
 int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     return(IDebugProgram2.WriteDump(DUMPTYPE, pszDumpUrl));
 }
Example #4
0
 int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     Debug.WriteLine("AD7ProgramNode: Entering WriteDump");
     throw new NotImplementedException();
 }
Example #5
0
 // Writes a dump to a file.
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     // The sample debugger does not support creating or reading mini-dumps.
     return Constants.E_NOTIMPL;
 }
Example #6
0
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     throw new NotImplementedException();
 }
Example #7
0
 // Writes a dump to a file.
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     return VSConstants.E_NOTIMPL;
 }
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     Log.Debug("Program: WriteDump");
     return(VSConstants.E_NOTIMPL);
 }
Example #9
0
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     return(VSConstants.E_NOTIMPL);
 }
Example #10
0
 public int WriteDump(enum_DUMPTYPE dumptype, string pszDumpUrl)
 {
     DLog.Debug(DContext.VSDebuggerComCall, "IDebugProgram2.WriteDump");
     throw new NotImplementedException();
 }
 int Microsoft.VisualStudio.Debugger.Interop.IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     return(COM_HResults.S_OK);
 }
Example #12
0
 int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) {
     return IDebugProgram2.WriteDump(DUMPTYPE, pszDumpUrl);
 }
Example #13
0
 int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) {
     return VSConstants.E_NOTIMPL;
 }
Example #14
0
 int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     throw new NotImplementedException();
 }
Example #15
0
 public int WriteDump(enum_DUMPTYPE dumptype, string pszDumpUrl)
 {
     DLog.Debug(DContext.VSDebuggerComCall, "IDebugProgram2.WriteDump");
     throw new NotImplementedException();
 }
Example #16
0
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     Log.Debug("Program: WriteDump");
     return VSConstants.E_NOTIMPL;
 }
 int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
   Debug.WriteLine("AD7ProgramNode: Entering WriteDump");
   throw new NotImplementedException();
 }
Example #18
0
 // Writes a dump to a file.
 public int WriteDump(enum_DUMPTYPE dumptype, string pszDumpUrl) {
     DebugWriteCommand("WriteDump");
     return VSConstants.E_NOTIMPL;
 }
Example #19
0
 /// <summary>
 ///     Writes a dump to a file.
 /// </summary>
 /// <param name="dumptype"></param>
 /// <param name="pszDumpUrl"></param>
 /// <returns>If successful, returns S_OK; otherwise, returns an error code.</returns>
 public int WriteDump(enum_DUMPTYPE dumptype, string pszDumpUrl)
 {
     return(E_NOTIMPL);
 }
Example #20
0
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     DebugHelper.TraceEnteringMethod();
     throw new NotImplementedException();
 }
Example #21
0
 public int WriteDump(enum_DUMPTYPE dumpType, string dumpUrl)
 {
     return(VSConstants.E_NOTIMPL);
 }
Example #22
0
 int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     throw new NotImplementedException();
 }
Example #23
0
 /// <summary>
 /// Writes a dump to a file.
 /// </summary>
 /// <param name="DUMPTYPE">A value from the DUMPTYPE enumeration that specifies the type of dump, for example, short or long.</param>
 /// <param name="pszDumpUrl">The URL to write the dump to. Typically, this is in the form of file://c:\path\filename.ext, but may be any valid URL.</param>
 /// <returns>If successful, returns S_OK; otherwise, returns an error code.</returns>
 /// <remarks>A program dump would typically include the current stack frame, the stack itself, a list of the threads running in the program, and possibly any memory that the program owns.</remarks>
 public virtual int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     Logger.Debug(string.Empty);
     return(VSConstants.E_NOTIMPL);
 }
Example #24
0
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     throw new NotImplementedException();
 }
Example #25
0
 int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     return(VSConstants.E_NOTIMPL);
 }
Example #26
0
 // Writes a dump to a file.
 public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl)
 {
     // The sample debugger does not support creating or reading mini-dumps.
     return(Constants.E_NOTIMPL);
 }
 /// <summary>
 /// Writes a dump to a file.
 /// </summary>
 /// <param name="DUMPTYPE">A value from the DUMPTYPE enumeration that specifies the type of dump, for example, short or long.</param>
 /// <param name="pszDumpUrl">The URL to write the dump to. Typically, this is in the form of file://c:\path\filename.ext, but may be any valid URL.</param>
 /// <returns>If successful, returns S_OK; otherwise, returns an error code.</returns>
 /// <remarks>A program dump would typically include the current stack frame, the stack itself, a list of the threads running in the program, and possibly any memory that the program owns.</remarks>
 public virtual int WriteDump( enum_DUMPTYPE DUMPTYPE, string pszDumpUrl )
 {
     Logger.Debug( string.Empty );
     return VSConstants.E_NOTIMPL;
 }