Esempio n. 1
0
 public IDebuggerEvent GetEvent(EventInfo evt) => dispatcher.UI(() => FirstAppDomain?.GetEvent(evt));
Esempio n. 2
0
 public IDebuggerMethod GetMethod(MethodBase method) => dispatcher.UI(() => FirstAppDomain?.GetMethod(method));
Esempio n. 3
0
 public IDebuggerProperty GetProperty(PropertyInfo prop) => dispatcher.UI(() => FirstAppDomain?.GetProperty(prop));
Esempio n. 4
0
 public IDebuggerType GetType(Type type) => dispatcher.UI(() => FirstAppDomain?.GetType(type));
Esempio n. 5
0
 public IDebuggerField GetField(FieldInfo field) => dispatcher.UI(() => FirstAppDomain?.GetField(field));
Esempio n. 6
0
 public IDebuggerType GetType(string modName, string className) => dispatcher.UI(() => FirstAppDomain?.GetType(modName, className));
Esempio n. 7
0
 public IDebuggerType GetType(string modName, string className, params IDebuggerType[] genericArguments) => dispatcher.UI(() => FirstAppDomain?.GetType(modName, className, genericArguments));
Esempio n. 8
0
 public IDebuggerProperty GetProperty(string modName, string className, string propertyName) => dispatcher.UI(() => FirstAppDomain?.GetProperty(modName, className, propertyName));
Esempio n. 9
0
 public IDebuggerEvent GetEvent(string modName, string className, string eventName) => dispatcher.UI(() => FirstAppDomain?.GetEvent(modName, className, eventName));
Esempio n. 10
0
 public IDebuggerMethod GetMethod(string modName, string className, string methodName) => dispatcher.UI(() => FirstAppDomain?.GetMethod(modName, className, methodName));
Esempio n. 11
0
 public IDebuggerField GetField(string modName, string className, string fieldName) => dispatcher.UI(() => FirstAppDomain?.GetField(modName, className, fieldName));
Esempio n. 12
0
 public IDebuggerClass GetClass(string modName, string className) => dispatcher.UI(() => FirstAppDomain?.GetClass(modName, className));
Esempio n. 13
0
 public IDebuggerAssembly GetAssembly(string name) => dispatcher.UI(() => FirstAppDomain?.GetAssembly(name));
Esempio n. 14
0
 public IDebuggerAssembly GetAssembly(Assembly asm) => dispatcher.UI(() => FirstAppDomain?.GetAssembly(asm));
Esempio n. 15
0
 public IDebuggerModule GetModuleByName(string name) => dispatcher.UI(() => FirstAppDomain?.GetModuleByName(name));
Esempio n. 16
0
 public IDebuggerModule GetModule(ModuleId name) => dispatcher.UI(() => FirstAppDomain?.GetModule(name));