RequestOptionsArgs

Experimental Interface

Interface Overview

interface RequestOptionsArgs {
  url : string
  method : string|RequestMethod
  search : string|URLSearchParams
  headers : Headers
  body : any
  withCredentials : boolean
  responseType : ResponseContentType
}

Interface Description

Interface for options to construct a RequestOptions, based on RequestInit from the Fetch spec.

Interface Details

url : string
method : string|RequestMethod
search : string|URLSearchParams
headers : Headers
body : any
withCredentials : boolean
responseType : ResponseContentType

exported from @angular/http/index, defined in @angular/http/src/interfaces.ts

doc_Angular
2016-10-06 09:46:55
Comments
Leave a Comment

Please login to continue.