Метод | Описание | |
---|---|---|
H3HttpPost ( ) : System |
Default constructor.
|
|
H3HttpPost ( String url ) : System |
Constructor that accepts a url as a parameter
|
|
H3HttpPost ( String url, |
Constructor allowing the setting of the url and items to post.
|
|
Post ( ) : String |
Posts the supplied data to specified url.
|
|
Post ( |
Posts the supplied data to specified url.
|
|
Post ( String url ) : String |
Posts the supplied data to specified url.
|
|
Post ( String url, |
Posts the supplied data to specified url.
|
|
Post ( String url, |
Posts the supplied data to specified url.
|
|
Post ( String url, |
Posts the supplied data to specified url.
|
|
PostData ( String url, String postData, String contentType, |
Posts data to a specified url. Note that this assumes that you have already url encoded the post data.
|
|
PostData ( String url, String postData, String contentType, |
Posts data to a specified url. Note that this assumes that you have already url encoded the post data.
|
Метод | Описание | |
---|---|---|
EncodeAndAddItem ( StringBuilder &baseRequest, String key, String dataItem ) : void |
Encodes an item and adds it to the string.
|
public H3HttpPost ( String url ) : System | ||
url | String | The url where the post will be submitted to. |
Результат | System |
public H3HttpPost ( String url, |
||
url | String | the url for the post. |
values | The values for the post. | |
Результат | System |
public Post ( |
||
timeout | Timeout for the request, in milliseconds (default is 10,000; 10 seconds). | |
Результат | String |
public Post ( String url ) : String | ||
url | String | The url to post to. |
Результат | String |
public Post ( String url, |
||
url | String | The url to post to. |
timeout | Timeout for the request, in milliseconds (default is 10,000; 10 seconds). | |
Результат | String |
public Post ( String url, |
||
url | String | The url to post to. |
values | The values to post. | |
Результат | String |
public Post ( String url, |
||
url | String | The url to post to. |
values | The values to post. | |
timeout | Timeout for the request, in milliseconds (default is 10,000; 10 seconds). | |
Результат | String |
public PostData ( String url, String postData, String contentType, |
||
url | String | the url to post to. |
postData | String | The data to post. |
contentType | String | Content type to use (e.g. "application/x-www-form-urlencoded") |
timeout | Number of milliseconds before the request times out. | |
Результат | String |
public PostData ( String url, String postData, String contentType, |
||
url | String | the url to post to. |
postData | String | The data to post. |
contentType | String | Content type to use (e.g. "application/x-www-form-urlencoded") |
timeout | Number of milliseconds before the request times out. | |
headerProps | string>.Dictionary | Dictionary of header key and value pairs, or null for none |
Результат | String |