Url
Url(string)
Initializes a new instance of the Url with the specified URL.
| Parameter | Type | Description |
|---|
| url | String | The URL to process. |
Exceptions
| exception | condition |
|---|
| Error | TypeError: raised if url cannot be parsed as valid URL. |
See Also
Url(string, string)
Initializes a new instance of the Url with the specified URL and base URL.
public Url(string url, string baseUrl)
| Parameter | Type | Description |
|---|
| url | String | The URL to process. |
| baseUrl | String | The base URL. |
Exceptions
| exception | condition |
|---|
| Error | TypeError: raised if url or baseUrl cannot be parsed as valid URL. |
See Also