aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/UriScheme.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-21 10:50:54 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-21 10:50:54 -0400
commit7815d65e5c315990086c84e440cae125c77b3687 (patch)
treedc7f95aff749644df3029eac4841ba17975db4d9 /SocketHttpListener/Net/UriScheme.cs
parent23691e181b122dd345e2878556662a3d31266cee (diff)
update responses
Diffstat (limited to 'SocketHttpListener/Net/UriScheme.cs')
-rw-r--r--SocketHttpListener/Net/UriScheme.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/SocketHttpListener/Net/UriScheme.cs b/SocketHttpListener/Net/UriScheme.cs
new file mode 100644
index 000000000..eb13619c9
--- /dev/null
+++ b/SocketHttpListener/Net/UriScheme.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace SocketHttpListener.Net
+{
+ internal 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 = "://";
+ }
+}