aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener/Net/UriScheme.cs
blob: 732fc0e7df8a00767954018f79ef0146a17be70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Text;

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 = "://";
    }
}