public override bool Send(string command) { DebuggerInput.Write(CONTENT_LENGTH + command.Length.ToString() + TWO_CRLF + command); DebuggerInput.Flush(); return(true); }
public override bool Send(string cmd) { DebuggerInput.WriteLine(cmd); DebuggerInput.Flush(); return(true); }
public override bool Send(string command) { byte[] bytes = Encoding.UTF8.GetBytes(command); string commandSize = bytes.Length.ToString(); DebuggerInput.Write(CONTENT_LENGTH + commandSize + TWO_CRLF + command); DebuggerInput.Flush(); return(true); }