Seringa.Engine.Utils.SocksHttpWebResponse.SetHeadersAndResponseContent C# (CSharp) Method

SetHeadersAndResponseContent() private method

private SetHeadersAndResponseContent ( string responseMessage ) : void
responseMessage string
return void
        private void SetHeadersAndResponseContent(string responseMessage)
        {
            if (string.IsNullOrEmpty(responseMessage))
                return;

            // the HTTP headers can be found before the first blank line
            var indexOfFirstBlankLine = responseMessage.IndexOf("\r\n\r\n");

            var headers = responseMessage.Substring(0, indexOfFirstBlankLine);
            var headerValues = headers.Split(new[] { "\r\n" }, StringSplitOptions.RemoveEmptyEntries);
            // ignore the first line in the header since it is the HTTP response code
            for (int i = 1; i < headerValues.Length; i++)
            {
                var headerEntry = headerValues[i].Split(new[] { ':' });
                Headers.Add(headerEntry[0], headerEntry[1]);
            }

            ResponseContent = responseMessage.Substring(indexOfFirstBlankLine + 4);
        }