diff --git a/src/csharp/Protocol.cs b/src/csharp/Protocol.cs index ec2f9c8..8f46c95 100644 --- a/src/csharp/Protocol.cs +++ b/src/csharp/Protocol.cs @@ -102,7 +102,7 @@ public abstract class ProtocolServer public bool TRACE_RESPONSE; protected const int BUFFER_SIZE = 4096; - protected const string TWO_CRLF = "\r\n\r\n"; + protected const string TWO_CRLF = @"\r\n\r\n"; protected static readonly Regex CONTENT_LENGTH_MATCHER = new Regex(@"Content-Length: (\d+)"); protected static readonly Encoding Encoding = System.Text.Encoding.UTF8;