docs(http): add language annotations and fix method value to enum

Closes #4348
This commit is contained in:
mgechev 2015-09-24 11:32:43 +03:00 committed by Minko Gechev
parent e2f5d87ff7
commit 4319563bba
4 changed files with 7 additions and 7 deletions

View File

@ -115,7 +115,7 @@ export class RequestOptions {
*
* ### Example ([live demo](http://plnkr.co/edit/LEKVSx?p=preview))
*
* ```
* ```typescript
* import {bind, bootstrap} from 'angular2/angular2';
* import {HTTP_BINDINGS, Http, BaseRequestOptions, RequestOptions} from 'angular2/http';
* import {App} from './myapp';

View File

@ -114,7 +114,7 @@ export class ResponseOptions {
*
* ### Example ([live demo](http://plnkr.co/edit/qv8DLT?p=preview))
*
* ```
* ```typescript
* import {bind, bootstrap} from 'angular2/angular2';
* import {HTTP_BINDINGS, Headers, Http, BaseResponseOptions, ResponseOptions} from 'angular2/http';
* import {App} from './myapp';

View File

@ -39,7 +39,7 @@ function mergeOptions(defaultOpts, providedOpts, method, url): RequestOptions {
*
* #Example
*
* ```
* ```typescript
* import {Http, HTTP_BINDINGS} from 'angular2/http';
* @Component({selector: 'http-app', viewBindings: [HTTP_BINDINGS]})
* @View({templateUrl: 'people.html'})
@ -68,7 +68,7 @@ function mergeOptions(defaultOpts, providedOpts, method, url): RequestOptions {
*
* #Example
*
* ```
* ```typescript
* import {MockBackend, BaseRequestOptions, Http} from 'angular2/http';
* var injector = Injector.resolveAndCreate([
* BaseRequestOptions,

View File

@ -24,16 +24,16 @@ import {
* One such example is when creating services that wrap higher-level services, like {@link Http},
* where it may be useful to generate a `Request` with arbitrary headers and search params.
*
* ```
* ```typescript
* import {Injectable, Injector} from 'angular2/angular2';
* import {HTTP_BINDINGS, Http, Request} from 'angular2/http';
* import {HTTP_BINDINGS, Http, Request, RequestMethods} from 'angular2/http';
*
* @Injectable()
* class AutoAuthenticator {
* constructor(public http:Http) {}
* request(url:string) {
* return this.http.request(new Request({
* method: 0, //GET.
* method: RequestMethods.Get,
* url: url,
* search: 'password=123'
* }));