()
| 21 | public MessageReceivedDelegate MessageReceived = delegate { }; |
| 22 | |
| 23 | public DAPStream() |
| 24 | { |
| 25 | Input = Console.OpenStandardInput(); |
| 26 | InputReader = new StreamReader(Input, Encoding.UTF8); |
| 27 | } |
| 28 | |
| 29 | public void EnableLogging(Stream logStream) |
| 30 | { |
nothing calls this directly
no outgoing calls
no test coverage detected