aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/CollectionExtensions.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-12 23:50:50 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-12 23:50:50 -0400
commit5f5f2838b1931a2cf426b778755a417cc662b46f (patch)
tree007597d0ba7bc2d992f909c9876744d80cc31b42 /MediaBrowser.Controller/Net/CollectionExtensions.cs
parent572103cdfe9fdf15ac881a104537047b3ca928ea (diff)
moved the http server to common, added more http handlers
Diffstat (limited to 'MediaBrowser.Controller/Net/CollectionExtensions.cs')
-rw-r--r--MediaBrowser.Controller/Net/CollectionExtensions.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/MediaBrowser.Controller/Net/CollectionExtensions.cs b/MediaBrowser.Controller/Net/CollectionExtensions.cs
deleted file mode 100644
index 137fbe50b7..0000000000
--- a/MediaBrowser.Controller/Net/CollectionExtensions.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System.Collections.Generic;
-using System.Collections.Specialized;
-using System.Linq;
-
-namespace MediaBrowser.Controller.Net
-{
- public static class CollectionExtensions
- {
- public static IDictionary<string, IEnumerable<string>> ToDictionary(this NameValueCollection source)
- {
- return source.AllKeys.ToDictionary<string, string, IEnumerable<string>>(key => key, source.GetValues);
- }
- }
-} \ No newline at end of file