本文整理汇总了C#中ICorDebugAppDomain.Continue方法的典型用法代码示例。如果您正苦于以下问题:C# ICorDebugAppDomain.Continue方法的具体用法?C# ICorDebugAppDomain.Continue怎么用?C# ICorDebugAppDomain.Continue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ICorDebugAppDomain
的用法示例。
在下文中一共展示了ICorDebugAppDomain.Continue方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Breakpoint
public void Breakpoint(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, ICorDebugBreakpoint pBreakpoint)
{
var handler = OnBreakpoint;
if (handler != null)
{
handler(this, new DebuggerBreakpointEventArgs(pThread, pBreakpoint));
}
pAppDomain.Continue(0);
}
示例2: EvalComplete
public virtual void EvalComplete(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, ICorDebugEval pEval) { pAppDomain.Continue(0); }
示例3: BreakpointSetError
public void BreakpointSetError(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, ICorDebugBreakpoint pBreakpoint, uint dwError)
{
Logger.WriteLine("Failed to set breakpoing. dwError: {0}", dwError);
pAppDomain.Continue(0);
}
示例4: Break
public void Break(ICorDebugAppDomain pAppDomain, ICorDebugThread thread)
{
pAppDomain.Continue(0);
}
示例5: UnloadModule
public void UnloadModule(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule)
{
try
{
Logger.WriteLine("Module {0} unloaded", new DebugModule(pModule).Name);
}
catch (Exception)
{
Logger.WriteLine("Could not resolve unloaded module name");
}
pAppDomain.Continue(0);
}
示例6: UnloadAssembly
public void UnloadAssembly(ICorDebugAppDomain pAppDomain, ICorDebugAssembly pAssembly)
{
var assembly = new DebugAssembly(pAssembly);
Logger.WriteLine("Unloaded {0} assembly", assembly.Name);
pAppDomain.Continue(0);
}
示例7: NameChange
public void NameChange(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread)
{
pAppDomain.Continue(0);
}
示例8: LogMessage
public void LogMessage(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, int lLevel, string pLogSwitchName, string pMessage)
{
Logger.WriteLine("Debug Output: {0}", pMessage);
pAppDomain.Continue(0);
}
示例9: UnloadAssembly
public virtual void UnloadAssembly(ICorDebugAppDomain pAppDomain, ICorDebugAssembly pAssembly) { pAppDomain.Continue(0); }
示例10: ExitAppDomain
public virtual void ExitAppDomain(ICorDebugProcess pProcess, ICorDebugAppDomain pAppDomain) { pAppDomain.Continue(0); }
示例11: LogMessage
public virtual void LogMessage(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, int lLevel, string pLogSwitchName, string pMessage) { pAppDomain.Continue(0); }
示例12: LoadClass
public virtual void LoadClass(ICorDebugAppDomain pAppDomain, ICorDebugClass c) { pAppDomain.Continue(0); }
示例13: UnloadModule
public virtual void UnloadModule(ICorDebugAppDomain pAppDomain, ICorDebugModule pModule) { pAppDomain.Continue(0); }
示例14: ExitThread
public virtual void ExitThread(ICorDebugAppDomain pAppDomain, ICorDebugThread thread) { pAppDomain.Continue(0); }
示例15: EvalException
public virtual void EvalException(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, ICorDebugEval pEval) { pAppDomain.Continue(0); }