Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2014-07-15 11:24:14 +0400
committerDavid Karlaš <david.karlas@xamarin.com>2014-07-15 11:24:14 +0400
commit97345374320e35d4271b16885302bff0902b8096 (patch)
tree54dc1a8b04839bfefe6f9aa912f72cdd80e0202a /main/src/addins/MonoDevelop.Debugger.Win32
parent71da0315e35d7121e5b7568c63ee639d482b5701 (diff)
[Win32] Updated MTARawValue to refect outArgs changes
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Win32')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/MtaRawValue.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/MtaRawValue.cs b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/MtaRawValue.cs
index f2511819e4..20c411f9a5 100644
--- a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/MtaRawValue.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/MtaRawValue.cs
@@ -17,6 +17,14 @@ namespace MonoDevelop.Debugger.Win32
return MtaThread.Run (() => source.CallMethod (name, parameters, options));
}
+ public object CallMethod (string name, object[] parameters, out object[] outArgs, EvaluationOptions options)
+ {
+ object[] tempOutArgs = null;
+ var result = MtaThread.Run (() => source.CallMethod (name, parameters, out tempOutArgs, options));
+ outArgs = tempOutArgs;
+ return result;
+ }
+
public object GetMemberValue (string name, EvaluationOptions options)
{
return MtaThread.Run (() => source.GetMemberValue (name, options));