Method | Description | |
---|---|---|
SendDeleteRequest ( string url ) : string |
Sends a HTTP delete request.
|
|
SendGetRequest ( string url ) : string |
Sends a HTTP get request.
|
|
SendPostRequest ( string url ) : string |
Sends a HTTP post request.
|
|
SendPostRequest ( string url, string data ) : string |
Sends a HTTP post request.
|
|
SendPutRequest ( string url, string data ) : string |
Sends a put request.
|
Method | Description | |
---|---|---|
CreateRequest ( string url ) : |
public SendDeleteRequest ( string url ) : string | ||
url | string | The url to which the request is send. |
return | string |
public SendGetRequest ( string url ) : string | ||
url | string | The url to which the request is send. |
return | string |
public SendPostRequest ( string url ) : string | ||
url | string | The url to which the request is send. |
return | string |
public SendPostRequest ( string url, string data ) : string | ||
url | string | The url to which the request is send. |
data | string | The data which is posted. |
return | string |
public SendPutRequest ( string url, string data ) : string | ||
url | string | The url to which the request is send. |
data | string | The data which is put. |
return | string |