Interfaces
HttpRequestOptions
Provides options for the http requests.
Defined in: http/http-interfaces.ts
Provides options for the http requests.
Properties
content?
optional content?: string | FormData | ArrayBuffer | Uint8Array<ArrayBufferLike>;Defined in: http/http-interfaces.ts
Gets or sets the request body.
dontFollowRedirects?
optional dontFollowRedirects?: boolean;Defined in: http/http-interfaces.ts
Gets or sets whether to not follow server's redirection responses.
headers?
optional headers?: any;Defined in: http/http-interfaces.ts
Gets or sets the request headers in JSON format.
method
method: string;Defined in: http/http-interfaces.ts
Gets or sets the request method.
timeout?
optional timeout?: number;Defined in: http/http-interfaces.ts
Gets or sets the request timeout in milliseconds.
url
url: string;Defined in: http/http-interfaces.ts
Gets or sets the request url.
- Previous
- HttpContent
- Next
- HttpResponse