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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs')
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs b/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
index 1c7d5d1..caa1ac7 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft/Connection.cs
@@ -514,7 +514,8 @@ namespace Mono.Debugger.Soft
GET_TYPES = 12,
INVOKE_METHODS = 13,
START_BUFFERING = 14,
- STOP_BUFFERING = 15
+ STOP_BUFFERING = 15,
+ GET_ENC_CAPABILITIES = 21
}
enum CmdEvent {
@@ -1961,6 +1962,12 @@ namespace Mono.Debugger.Soft
}
}
+ internal string VM_EnCCapabilities ()
+ {
+ PacketReader r = SendReceive (CommandSet.VM, (int)CmdVM.GET_ENC_CAPABILITIES, new PacketWriter ());
+ return r.ReadString ();
+ }
+
internal delegate void InvokeMethodCallback (ValueImpl v, ValueImpl exc, ValueImpl out_this, ValueImpl[] out_args, ErrorCode error, object state);
void read_invoke_res (PacketReader r, out ValueImpl v, out ValueImpl exc, out ValueImpl out_this, out ValueImpl[] out_args) {