fullyDecodeReservedExpansion property

  1. @TagNumber.new(2)
bool get fullyDecodeReservedExpansion

When set to true, URL path parmeters will be fully URI-decoded except in cases of single segment matches in reserved expansion, where "%2F" will be left encoded.

The default behavior is to not decode RFC 6570 reserved characters in multi segment matches.

Implementation

@$pb.TagNumber(2)
$core.bool get fullyDecodeReservedExpansion => $_getBF(1);
  1. @TagNumber.new(2)
set fullyDecodeReservedExpansion (bool value)

Implementation

@$pb.TagNumber(2)
set fullyDecodeReservedExpansion($core.bool value) => $_setBool(1, value);