docs: update HttpHeader documentation (#26233)

PR Close #26233
This commit is contained in:
Vani 2018-10-03 07:44:04 -07:00 committed by Miško Hevery
parent b65fe62be1
commit c3fadadaa9
1 changed files with 48 additions and 7 deletions

View File

@ -13,7 +13,8 @@ interface Update {
} }
/** /**
* Immutable set of Http headers, with lazy parsing. * `HttpHeaders` class represents the header configuration options for an HTTP request.
* Instances should be assumed immutable with lazy parsing.
* *
* @publicApi * @publicApi
*/ */
@ -42,6 +43,8 @@ export class HttpHeaders {
*/ */
private lazyUpdate: Update[]|null = null; private lazyUpdate: Update[]|null = null;
/** Constructs a new HTTP header object with the given values.*/
constructor(headers?: string|{[name: string]: string | string[]}) { constructor(headers?: string|{[name: string]: string | string[]}) {
if (!headers) { if (!headers) {
this.headers = new Map<string, string[]>(); this.headers = new Map<string, string[]>();
@ -82,7 +85,11 @@ export class HttpHeaders {
} }
/** /**
* Checks for existence of header by given name. * Checks for existence of a header by a given name.
*
* @param name The header name to check for existence.
*
* @returns Whether the header exits.
*/ */
has(name: string): boolean { has(name: string): boolean {
this.init(); this.init();
@ -91,7 +98,11 @@ export class HttpHeaders {
} }
/** /**
* Returns first header that matches given name. * Returns the first header value that matches a given name.
*
* @param name The header name to retrieve.
*
* @returns A string if the header exists, null otherwise
*/ */
get(name: string): string|null { get(name: string): string|null {
this.init(); this.init();
@ -101,7 +112,9 @@ export class HttpHeaders {
} }
/** /**
* Returns the names of the headers * Returns the names of the headers.
*
* @returns A list of header names.
*/ */
keys(): string[] { keys(): string[] {
this.init(); this.init();
@ -110,7 +123,11 @@ export class HttpHeaders {
} }
/** /**
* Returns list of header values for a given name. * Returns a list of header values for a given header name.
*
* @param name The header name from which to retrieve the values.
*
* @returns A string of values if the header exists, null otherwise.
*/ */
getAll(name: string): string[]|null { getAll(name: string): string[]|null {
this.init(); this.init();
@ -118,14 +135,38 @@ export class HttpHeaders {
return this.headers.get(name.toLowerCase()) || null; return this.headers.get(name.toLowerCase()) || null;
} }
/**
* Appends a new header value to the existing set of
* header values.
*
* @param name The header name for which to append the values.
*
* @returns A clone of the HTTP header object with the value appended.
*/
append(name: string, value: string|string[]): HttpHeaders { append(name: string, value: string|string[]): HttpHeaders {
return this.clone({name, value, op: 'a'}); return this.clone({name, value, op: 'a'});
} }
/**
* Sets a header value for a given name. If the header name already exists,
* its value is replaced with the given value.
*
* @param name The header name.
* @param value Provides the value to set or overide for a given name.
*
* @returns A clone of the HTTP header object with the newly set header value.
*/
set(name: string, value: string|string[]): HttpHeaders { set(name: string, value: string|string[]): HttpHeaders {
return this.clone({name, value, op: 's'}); return this.clone({name, value, op: 's'});
} }
/**
* Deletes all header values for a given name.
*
* @param name The header name.
* @param value The header values to delete for a given name.
*
* @returns A clone of the HTTP header object.
*/
delete (name: string, value?: string|string[]): HttpHeaders { delete (name: string, value?: string|string[]): HttpHeaders {
return this.clone({name, value, op: 'd'}); return this.clone({name, value, op: 'd'});
} }