pathEncoding property

String? pathEncoding
getter/setter pair

Specifies whether paths (such as request.path) are encoded and how. Possible string values are:

  • "ENCODING_UNSPECIFIED" : No encoding has been specified. Defaults to "URL_ENCODED" behavior.
  • "URL_ENCODED" : Treats path segments as URL encoded but with non-encoded separators ("/"). This is the default behavior.
  • "PLAIN" : Treats total path as non-URL encoded e.g. raw.

Implementation

core.String? pathEncoding;