//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 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; } }
int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { return(IDebugProgram2.WriteDump(DUMPTYPE, pszDumpUrl)); }
int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { Debug.WriteLine("AD7ProgramNode: Entering WriteDump"); throw new NotImplementedException(); }
// 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; }
public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { throw new NotImplementedException(); }
// 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); }
public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { return(VSConstants.E_NOTIMPL); }
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); }
int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { return IDebugProgram2.WriteDump(DUMPTYPE, pszDumpUrl); }
int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { return VSConstants.E_NOTIMPL; }
int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { throw new NotImplementedException(); }
public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { Log.Debug("Program: WriteDump"); return VSConstants.E_NOTIMPL; }
// Writes a dump to a file. public int WriteDump(enum_DUMPTYPE dumptype, string pszDumpUrl) { DebugWriteCommand("WriteDump"); return VSConstants.E_NOTIMPL; }
/// <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); }
public int WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { DebugHelper.TraceEnteringMethod(); throw new NotImplementedException(); }
public int WriteDump(enum_DUMPTYPE dumpType, string dumpUrl) { return(VSConstants.E_NOTIMPL); }
int IDebugProgram3.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { throw new NotImplementedException(); }
/// <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); }
int IDebugProgram2.WriteDump(enum_DUMPTYPE DUMPTYPE, string pszDumpUrl) { return(VSConstants.E_NOTIMPL); }
// 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; }