2019-01-13 20:03:10 +00:00
|
|
|
namespace SocketHttpListener.Net
|
2017-06-21 14:50:54 +00:00
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
internal static class UriScheme
|
2017-06-21 14:50:54 +00:00
|
|
|
{
|
|
|
|
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 = "://";
|
|
|
|
}
|
|
|
|
}
|