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