Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/SimpleHttpListener.Rx/Model/Base/HttpHeaderBase.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Sockets;
using ISimpleHttpListener.Rx.Model;
Expand All @@ -7,7 +8,7 @@ namespace SimpleHttpListener.Rx.Model.Base
{
public abstract class HttpHeaderBase : ParseControlBase, IHttpHeaders
{
public IDictionary<string, string> Headers { get; set; } = new Dictionary<string, string>();
public IDictionary<string, string> Headers { get; set; } = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);

public Stream ResponseStream { get; set; }

Expand Down