Method | Description | |
---|---|---|
getRequestAsync ( string url ) : Task |
Async: Make an HTTP GET request to a URL (with no extra parameters)
|
|
postRequestAsync ( string url, string postData, string authorization = "", bool Expect100Continue = true ) : Task |
||
putRequestAsync ( string url, string putData ) : Task |
Async: Make an HTTP PUT request to a URL with data
|
public static getRequestAsync ( string url ) : Task |
||
url | string | The URL you would like to send a request to. |
return | Task |
public static postRequestAsync ( string url, string postData, string authorization = "", bool Expect100Continue = true ) : Task |
||
url | string | |
postData | string | |
authorization | string | |
Expect100Continue | bool | |
return | Task |
public static putRequestAsync ( string url, string putData ) : Task |
||
url | string | The URL you would like to send a request to. |
putData | string | The data you would like to send to the URL (e.g. JSON) |
return | Task |