aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/UriScheme.cs
diff options
context:
space:
mode:
authorClaus Vium <clausvium@gmail.com>2019-02-21 10:07:21 +0100
committerClaus Vium <clausvium@gmail.com>2019-02-26 22:11:21 +0100
commit4db31acff940dc9cabbd39649103faf4dc2e2c47 (patch)
tree4472b2330124f2bfea3f9dcdfcd5508cedd84570 /SocketHttpListener/Net/UriScheme.cs
parent968e282c907f57d7998b6435cadae2f0a5ec832c (diff)
Begin removing System.Net sources
Diffstat (limited to 'SocketHttpListener/Net/UriScheme.cs')
-rw-r--r--SocketHttpListener/Net/UriScheme.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/SocketHttpListener/Net/UriScheme.cs b/SocketHttpListener/Net/UriScheme.cs
deleted file mode 100644
index 33d1f09db..000000000
--- a/SocketHttpListener/Net/UriScheme.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-namespace SocketHttpListener.Net
-{
- internal static class UriScheme
- {
- public const string File = "file";
- public const string Ftp = "ftp";
- public const string Gopher = "gopher";
- public const string Http = "http";
- public const string Https = "https";
- public const string News = "news";
- public const string NetPipe = "net.pipe";
- public const string NetTcp = "net.tcp";
- public const string Nntp = "nntp";
- public const string Mailto = "mailto";
- public const string Ws = "ws";
- public const string Wss = "wss";
-
- public const string SchemeDelimiter = "://";
- }
-}