OpenEdge.Net.URI
- Last Updated: December 5, 2025
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
The OpenEdge.Net.URI class encapsulates the
target address, including the scheme (enumerated in OpenEdge.Net.UriSchemeEnum), host, port, path, query, and other
related URI elements.
Examples
Typically, a new URI object is created using a constructor, and passing in at least the scheme and host. The other elements of the URI can be added using properties or methods (queries).
Constructing a URI object
|
A URI can also be derived from a string using the static Parse()
method. Use the Encode() method to return an encoded version of the
URI.
Deriving a URI from a string
|