コード例 #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
ファイル: DebuggerValue.cs プロジェクト: manojdjoshi/dnSpy
		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
ファイル: DebuggerValue.cs プロジェクト: manojdjoshi/dnSpy
		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
ファイル: DebuggerValue.cs プロジェクト: ctguxp/dnSpy
 public IDebuggerValue Call(IDebuggerThread thread, string modName, uint token, params object[] args)
 {
     return(debugger.Dispatcher.UI(() => thread.Call(modName, token, CreateArguments(args))));
 }
コード例 #7
0
ファイル: DebuggerValue.cs プロジェクト: manojdjoshi/dnSpy
		public IDebuggerValue Call(IDebuggerThread thread, object[] genericArgs, IDebuggerMethod method, params object[] args) =>
			debugger.Dispatcher.UI(() => thread.Call(genericArgs, method, CreateArguments(args)));
コード例 #8
0
ファイル: DebuggerValue.cs プロジェクト: ctguxp/dnSpy
 public IDebuggerValue Call(IDebuggerThread thread, IDebuggerMethod method, params object[] args)
 {
     return(debugger.Dispatcher.UI(() => thread.Call(method, CreateArguments(args))));
 }
コード例 #9
0
ファイル: DebuggerValue.cs プロジェクト: ctguxp/dnSpy
 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
ファイル: DebuggerAppDomain.cs プロジェクト: pashav15/pashav
 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
ファイル: DebuggerAppDomain.cs プロジェクト: yueding/dnSpy
 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
ファイル: DebuggerValue.cs プロジェクト: GreenDamTan/dnSpy
		public IDebuggerValue Call(IDebuggerThread thread, string modName, uint token, params object[] args) {
			return debugger.Dispatcher.UI(() => thread.Call(modName, token, CreateArguments(args)));
		}
コード例 #13
0
ファイル: DebuggerValue.cs プロジェクト: GreenDamTan/dnSpy
		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
ファイル: DebuggerValue.cs プロジェクト: GreenDamTan/dnSpy
		public IDebuggerValue Call(IDebuggerThread thread, IDebuggerMethod method, params object[] args) {
			return debugger.Dispatcher.UI(() => thread.Call(method, CreateArguments(args)));
		}