Uri Module
Functions for creating, validating, and extracting data from Uri values.
Functions and values
| Function or value |
Description
|
Full Usage:
parse s
Parameters:
string
-
A URI string with a valid scheme followed by : and a non-empty, whitespace-free body.
The scheme must start with a letter and may contain letters, digits, +, -, and ..
Returns: Result<Uri, string>
Ok with a validated Uri, or Error with a message describing the validation failure.
Validation failures include: null input, exceeding 8192 characters, or invalid URI syntax.
|
Parse and validate a URI string.
|
|