Record TUrlParts

Description
Hierarchy
Fields
Methods
Properties

Unit

Declaration

type TUrlParts = record

Description

String version of TCefUrlParts

<see href="https://bitbucket.org/chromiumembedded/cef/src/master/include/internal/cef_types.h">CEF source file: /include/internal/cef_types.h (cef_urlparts_t))

Overview

Fields

Public spec: ustring;
Public scheme: ustring;
Public username: ustring;
Public password: ustring;
Public host: ustring;
Public port: ustring;
Public origin: ustring;
Public path: ustring;
Public query: ustring;
Public fragment: ustring;

Description

Fields

Public spec: ustring;

The complete URL specification.

Public scheme: ustring;

Scheme component not including the colon (e.g., "http").

Public username: ustring;

User name component.

Public password: ustring;

Password component.

Public host: ustring;

Host component. This may be a hostname, an IPv4 address or an IPv6 literal surrounded by square brackets (e.g., "[2001:db8::1]").

Public port: ustring;

Port number component.

Public origin: ustring;

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 path: ustring;

Path component including the first slash following the host.

Public query: ustring;

Query string component (i.e., everything following the '?').

Public fragment: ustring;

Fragment (hash) identifier component (i.e., the string following the '#').


Generated by PasDoc 0.16.0-snapshot.