On this page
HttpParameterCodec
interface
A codec for encoding and decoding parameters in URLs.
interface HttpParameterCodec {
  encodeKey(key: string): string
  encodeValue(value: string): string
  decodeKey(key: string): string
  decodeValue(value: string): string
}
   Class implementations
Description
Used by HttpParams.
Methods
| 
         
          encodeKey() 
          | 
      ||
|---|---|---|
  | 
      
| key | Type:   | 
          
Returns
string
| 
         
          encodeValue() 
          | 
      ||
|---|---|---|
  | 
      
| value | Type:   | 
          
Returns
string
| 
         
          decodeKey() 
          | 
      ||
|---|---|---|
  | 
      
| key | Type:   | 
          
Returns
string
| 
         
          decodeValue() 
          | 
      ||
|---|---|---|
  | 
      
| value | Type:   | 
          
Returns
string
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
 https://v6.angular.io/api/common/http/HttpParameterCodec