| File: src\runtime\src\libraries\Common\src\System\Net\UriScheme.cs | Web Access |
| Project: src\runtime\src\libraries\System.Net.Security\src\System.Net.Security.csproj (System.Net.Security) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.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 = "://"; } }