Метод | Описание | |
---|---|---|
GetAsync ( string requestUriString ) : Task |
Makes a GET request
|
|
HttpService ( ) : System.Collections.Generic |
Initializes a new instance of the HttpService class
|
|
PostAsync ( string requestUriString ) : Task |
Makes a POST request
|
|
PostAsync ( string requestUriString, string>.List |
Makes a POST request
|
|
PostAsync ( string requestUriString, object data ) : Task |
Makes a post request sending JSON content.
|
|
PostAsync ( string requestUriString, string contentType, byte content ) : Task |
Makes a POST request
|
public GetAsync ( string requestUriString ) : Task |
||
requestUriString | string | The request Uri |
Результат | Task |
public HttpService ( ) : System.Collections.Generic | ||
Результат | System.Collections.Generic |
public PostAsync ( string requestUriString ) : Task |
||
requestUriString | string | The request Uri |
Результат | Task |
public PostAsync ( string requestUriString, string>.List |
||
requestUriString | string | The request Uri |
content | string>.List | The content to send with the request |
Результат | Task |
public PostAsync ( string requestUriString, object data ) : Task |
||
requestUriString | string | The request Uri |
data | object | The content to POST |
Результат | Task |
public PostAsync ( string requestUriString, string contentType, byte content ) : Task |
||
requestUriString | string | The request Uri |
contentType | string | The type of content to send with the request |
content | byte | The content to send with the request |
Результат | Task |