- /// Encodes the given criteriaFilterStr. Supports criteria filter strings that begin with the CRITERIA_FILTER_PREFIX - /// value "?criteria=", and also those that do not. Encodes only the JSON criteria portion of the filter string, removing - /// the CRITERIA_FILTER_PREFIX portion if the filter string starts with it. If the filter string does not start with - /// the CRITERIA_FILTER_PREFIX, the criteriaFilterStr string is simply encoded.
- ///Returns a criteria filter string that begins with the CRITERIA_FILTER_PREFIX, with the JSON filter portion of the string + /// Encodes the given criteriaFilterStr. Supports criteria filter strings that begin with a ?...= section where + /// ... is criteria, personFilter, accountSpecification, etc ("?criteria="). Encodes only the JSON criteria portion of the filter string, leaving + /// the beginning section alone. If the filter string does not start with ?...=, the criteriaFilterStr string is simply encoded.
+ ///Returns a criteria filter string that begins with the ?...=, with the JSON filter portion of the string /// encoded. Uses UTF-8 encoding.
///