Click or drag to resize

UrlParts Class

Version 94.4.20

[Missing <summary> documentation for "T:CefSharp.UrlParts"]

Inheritance Hierarchy
SystemObject
  CefSharpUrlParts

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public class UrlParts

The UrlParts type exposes the following members.

Constructors
  NameDescription
Public methodUrlParts
Initializes a new instance of the UrlParts class
Top
Properties
  NameDescription
Public propertyFragment
Fragment (hash) identifier component (i.e., the string following the '#').
Public propertyHost
Host component. This may be a hostname, an IPv4 address or an IPv6 literal surrounded by square brackets (e.g., "[2001:db8::1]").
Public propertyOrigin
Origin contains just the scheme, host, and port from a URL. Equivalent to clearing any username and password, replacing the path with a slash, and clearing everything after that. This value will be empty for non-standard URLs.
Public propertyPassword
Password component.
Public propertyPath
Path component including the first slash following the host.
Public propertyPort
Port number component.
Public propertyQuery
Query string component (i.e., everything following the '?').
Public propertyScheme
Scheme component not including the colon (e.g., "http").
Public propertySpec
The complete URL specification.
Public propertyUsername
User name component.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also