Inheritance: DebugSession
Esempio n. 1
0
        private static void RunSession(Stream inputStream, Stream outputStream)
        {
            DebugSession debugSession = new MonoDebugSession();

            debugSession.TRACE          = trace_requests;
            debugSession.TRACE_RESPONSE = trace_responses;
            debugSession.Start(inputStream, outputStream).Wait();
        }
Esempio n. 2
0
        private static void RunSession(Stream inputStream, Stream outputStream)
        {
            DebugSession debugSession = new MonoDebugSession();

            debugSession.TRACE          = trace_requests;
            debugSession.TRACE_RESPONSE = trace_responses;
            debugSession.Start(inputStream, outputStream).Wait();

            if (logFile != null)
            {
                logFile.Flush();
                logFile.Close();
                logFile = null;
            }
        }
Esempio n. 3
0
 private static void RunSession(Stream inputStream, Stream outputStream)
 {
     DebugSession debugSession = new MonoDebugSession();
     debugSession.TRACE = trace_requests;
     debugSession.TRACE_RESPONSE = trace_responses;
     debugSession.Start(inputStream, outputStream).Wait();
 }