예제 #1
0
 public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, string modName, uint token, params object[] args) =>
 debugger.Dispatcher.UI(() => thread.Call(genericArgs, modName, token, CreateArguments(args)));
예제 #2
0
 public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, IDebuggerMethod method, params object[] args) =>
 debugger.Dispatcher.UI(() => thread.Call(genericArgs, method, CreateArguments(args)));
예제 #3
0
 public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, string modName, string className, string methodName, params object[] args) =>
 debugger.Dispatcher.UI(() => thread.Call(genericArgs, modName, className, methodName, CreateArguments(args)));
예제 #4
0
		public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, string modName, string className, string methodName, params object[] args) =>
			debugger.Dispatcher.UI(() => thread.Call(genericArgs, modName, className, methodName, CreateArguments(args)));
예제 #5
0
		public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, string modName, uint token, params object[] args) =>
			debugger.Dispatcher.UI(() => thread.Call(genericArgs, modName, token, CreateArguments(args)));
예제 #6
0
 public IDebuggerValue Call(IDebuggerThread thread, string modName, uint token, params object[] args)
 {
     return(debugger.Dispatcher.UI(() => thread.Call(modName, token, CreateArguments(args))));
 }
예제 #7
0
		public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, IDebuggerMethod method, params object[] args) =>
			debugger.Dispatcher.UI(() => thread.Call(genericArgs, method, CreateArguments(args)));
예제 #8
0
 public IDebuggerValue Call(IDebuggerThread thread, IDebuggerMethod method, params object[] args)
 {
     return(debugger.Dispatcher.UI(() => thread.Call(method, CreateArguments(args))));
 }
예제 #9
0
 public IDebuggerValue Call(IDebuggerThread thread, string modName, string className, string methodName, params object[] args)
 {
     return(debugger.Dispatcher.UI(() => thread.Call(modName, className, methodName, CreateArguments(args))));
 }
예제 #10
0
 public void SetAllThreadsDebugState(ThreadState state, IDebuggerThread thread) =>
 debugger.Dispatcher.UI(() => DnAppDomain.CorAppDomain.SetAllThreadsDebugState((dndbg.COM.CorDebug.CorDebugThreadState)state, thread == null ? null : ((DebuggerThread)thread).DnThread.CorThread));
예제 #11
0
 public void SetAllThreadsDebugState(ThreadState state, IDebuggerThread thread)
 {
     debugger.Dispatcher.UI(() => appDomain.CorAppDomain.SetAllThreadsDebugState((dndbg.COM.CorDebug.CorDebugThreadState)state, thread == null ? null : ((DebuggerThread)thread).DnThread.CorThread));
 }
예제 #12
0
		public IDebuggerValue Call(IDebuggerThread thread, string modName, uint token, params object[] args) {
			return debugger.Dispatcher.UI(() => thread.Call(modName, token, CreateArguments(args)));
		}
예제 #13
0
		public IDebuggerValue Call(IDebuggerThread thread, string modName, string className, string methodName, params object[] args) {
			return debugger.Dispatcher.UI(() => thread.Call(modName, className, methodName, CreateArguments(args)));
		}
예제 #14
0
		public IDebuggerValue Call(IDebuggerThread thread, IDebuggerMethod method, params object[] args) {
			return debugger.Dispatcher.UI(() => thread.Call(method, CreateArguments(args)));
		}