Exemple #1
0
 public ObjectValue[] GetChildren(ObjectPath path, int index, int count, EvaluationOptions options)
 {
     return(MtaThread.Run(() => source.GetChildren(path, index, count, options)));
 }
Exemple #2
0
 public ObjectValue GetThisReference(int frameIndex, EvaluationOptions options)
 {
     return(MtaThread.Run(() => backtrace.GetThisReference(frameIndex, options)));
 }
Exemple #3
0
 public ValidationResult ValidateExpression(int frameIndex, string expression, EvaluationOptions options)
 {
     return(MtaThread.Run(() => backtrace.ValidateExpression(frameIndex, expression, options)));
 }
Exemple #4
0
 public object GetValue(int[] index)
 {
     return(MtaThread.Run(() => source.GetValue(index)));
 }
Exemple #5
0
 public StackFrame[] GetStackFrames(int firstIndex, int lastIndex)
 {
     return(MtaThread.Run(() => backtrace.GetStackFrames(firstIndex, lastIndex)));
 }
Exemple #6
0
 public EvaluationResult SetValue(ObjectPath path, string value, EvaluationOptions options)
 {
     return(MtaThread.Run(() => source.SetValue(path, value, options)));
 }
Exemple #7
0
 public ObjectValue[] GetAllLocals(int frameIndex, EvaluationOptions options)
 {
     return(MtaThread.Run(() => backtrace.GetAllLocals(frameIndex, options)));
 }
Exemple #8
0
 public object CallMethod(string name, object[] parameters, EvaluationOptions options)
 {
     return(MtaThread.Run(() => source.CallMethod(name, parameters, options)));
 }
Exemple #9
0
 public object GetMemberValue(string name, EvaluationOptions options)
 {
     return(MtaThread.Run(() => source.GetMemberValue(name, options)));
 }
 public string Substring(int index, int length)
 {
     return(MtaThread.Run(() => source.Substring(index, length)));
 }
Exemple #11
0
 public DebuggerSession CreateSession( )
 {
     return(MtaThread.Run(() => new CorDebuggerSession(FilePath.GetInvalidPathChars())));
 }
Exemple #12
0
 public DebuggerSession CreateSession( )
 {
     return(MtaThread.Run(() => new CorDebuggerSession()));
 }
Exemple #13
0
 public Array ToArray()
 {
     return(MtaThread.Run(() => source.ToArray()));
 }
Exemple #14
0
 public void SetValue(int[] index, object value)
 {
     MtaThread.Run(() => source.SetValue(index, value));
 }
Exemple #15
0
 public ObjectValue GetValue(ObjectPath path, EvaluationOptions options)
 {
     return(MtaThread.Run(() => source.GetValue(path, options)));
 }
Exemple #16
0
 public void SetMemberValue(string name, object value, EvaluationOptions options)
 {
     MtaThread.Run(() => source.SetMemberValue(name, value, options));
 }
Exemple #17
0
 public void SetRawValue(ObjectPath path, object value, EvaluationOptions options)
 {
     MtaThread.Run(() => source.SetRawValue(path, value, options));
 }
Exemple #18
0
 public CompletionData GetExpressionCompletionData(int frameIndex, string exp)
 {
     return(MtaThread.Run(() => backtrace.GetExpressionCompletionData(frameIndex, exp)));
 }
Exemple #19
0
 public AssemblyLine[] Disassemble(int frameIndex, int firstLine, int count)
 {
     return(MtaThread.Run(() => backtrace.Disassemble(frameIndex, firstLine, count)));
 }
Exemple #20
0
 public ObjectValue[] GetExpressionValues(int frameIndex, string[] expressions, EvaluationOptions options)
 {
     return(MtaThread.Run(() => backtrace.GetExpressionValues(frameIndex, expressions, options)));
 }
Exemple #21
0
 public ExceptionInfo GetException(int frameIndex, EvaluationOptions options)
 {
     return(MtaThread.Run(() => backtrace.GetException(frameIndex, options)));
 }
Exemple #22
0
 public void RegisterUpdateCallbacks(UpdateCallback[] callbacks)
 {
     MtaThread.Run(() => source.RegisterUpdateCallbacks(callbacks));
 }