Url ClassC# API
Represents a URL, specified by a protocol, optional credentials, host, port, path, optional query data, and optional reference.
Inheritance Hierarchy

System Object
  Facilita.Web Url

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public class Url : IDisposable
Remarks

e.g. protocol://user:password@host:port/path?query_data#reference

Note Note
A Url object is immutable - that is, it cannot be changed after it has been created. To modify a URL, various With*() methods can be used on an existing Url object to create a copy of the object with different attributes.

Caution note Caution
A Url object may not necessarily represent a valid URL.

See Also