UriFormat Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Controls how URI information is escaped.
public enum class UriFormat
public enum UriFormat
type UriFormat =
Public Enum UriFormat
- Inheritance
Fields
Name | Value | Description |
---|---|---|
UriEscaped | 1 | Escaping is performed according to the rules in RFC 2396. |
Unescaped | 2 | No escaping is performed. |
SafeUnescaped | 3 | Characters that have a reserved meaning in the requested URI components remain escaped. All others are not escaped. |
Remarks
This enumeration is used by the GetComponents method to specify the level of character escaping in the returned URI.
RFC 2396 defines the standard escaping for URIs, and is available at https://rfc-editor.org.
SafeUnescaped leaves the following characters escaped if the character has a reserved meaning in the requested UriComponents: "%", "#", "?", "/", "\", and "@".
Applies to
.NET