This is the archived documentation for Angular v5. Please visit angular.io to see documentation for the current version of Angular.

HttpParameterCodec

npm Package @angular/common
Module import { HttpParameterCodec } from '@angular/common/http';
Source common/http/src/params.ts

Interface Overview

      
      interface HttpParameterCodec { 
  encodeKey(key: string): string
  encodeValue(value: string): string
  decodeKey(key: string): string
  decodeValue(value: string): string
}
    

Class Implementations

Members

      
      encodeKey(key: string): string
    

      
      encodeValue(value: string): string
    

      
      decodeKey(key: string): string
    

      
      decodeValue(value: string): string