Click or drag to resize

CefUrlParts Class

URL component parts.
Inheritance Hierarchy
SystemObject
  Internal.Xilium.CefGlueCefUrlParts

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public sealed class CefUrlParts

The CefUrlParts type exposes the following members.

Constructors
 NameDescription
Public methodCefUrlPartsInitializes a new instance of the CefUrlParts class
Top
Properties
 NameDescription
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 methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Extension Methods
 NameDescription
Public Extension MethodMethodInvoke Calls the object method by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGet Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertyGetT Gets the value of the object property by name.
(Defined by ObjectEx)
Public Extension MethodPropertySet Sets the value of the object property by name.
(Defined by ObjectEx)
Top
See Also