2 using Mono.Debugging.Soft;
 
    3 using MonoDevelop.Debugger.Soft;
 
    4 using Mono.Debugging.Client;
 
    6 namespace MonoDevelop.Debugger.Soft.
Paradox 
   15         protected override void OnRun(DebuggerStartInfo startInfo)
 
   17             var dsi = (SoftDebuggerStartInfo)startInfo;
 
   18             if (dsi.StartArgs is SoftDebuggerConnectArgs)
 
   19                 base.StartConnecting(dsi);
 
   20             else if (dsi.StartArgs is SoftDebuggerListenArgs)
 
   21                 base.StartListening(dsi);
 
   23                 throw new NotImplementedException();
 
ParadoxRemoteSoftDebuggerSession()
 
override void OnRun(DebuggerStartInfo startInfo)