Private Method Details |
__Bs_HttpClient_fetchPage_1 |
|
private void __Bs_HttpClient_fetchPage_1( )
|
| |
GET request, nothing special here.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_2 |
|
private void __Bs_HttpClient_fetchPage_2( )
|
| |
GET request, fetching an url directly, not giving host and path separatly.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_3 |
|
private void __Bs_HttpClient_fetchPage_3( )
|
| |
GET request, page does not exist for sure.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_4 |
|
private void __Bs_HttpClient_fetchPage_4( )
|
| |
GET request on a page that returns a 301 moved permanently.
setting the http client not to follow redirects.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_4_1 |
|
private void __Bs_HttpClient_fetchPage_4_1( )
|
| |
GET request on a page that returns a 301 moved permanently.
follow the redirect...
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_5 |
|
private void __Bs_HttpClient_fetchPage_5( )
|
| |
GET request on a page that returns a 302 moved temporarily.
setting the http client not to follow redirects.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_5_1 |
|
private void __Bs_HttpClient_fetchPage_5_1( )
|
| |
GET request on a page that returns a 302 moved temporarily.
follow the redirect...
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_6 |
|
private void __Bs_HttpClient_fetchPage_6( )
|
| |
GET request on a page that returns a 401 unauthorized.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_6_1 |
|
private void __Bs_HttpClient_fetchPage_6_1( )
|
| |
GET request on a page that returns a 401 unauthorized.
but we do a login...
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_7 |
|
private void __Bs_HttpClient_fetchPage_7( )
|
| |
GET request, conditional (with If-Modified-Since header from the past)
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_7_2 |
|
private void __Bs_HttpClient_fetchPage_7_2( )
|
| |
GET request, conditional (with If-Modified-Since header from the future)
i expect to return normally as nothing happened if you specify an invalid date (or a date that'sin the future, which is considered invalid). rfc.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_7_3 |
|
private void __Bs_HttpClient_fetchPage_7_3( )
|
| |
GET request, conditional (with If-Modified-Since header)
in this example/test the file we request should not have been modified. so if you go and modifythe file 'ecg/pageBasic.html', update the datetime in this code!
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_8 |
|
private void __Bs_HttpClient_fetchPage_8( )
|
| |
HEAD request.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_9 |
|
private void __Bs_HttpClient_fetchPage_9( )
|
| |
POST request without data.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_9_2 |
|
private void __Bs_HttpClient_fetchPage_9_2( )
|
| |
POST request with data.
|
| Returns |
void |
|
__Bs_HttpClient_fetchPage_10 |
|
private void __Bs_HttpClient_fetchPage_10( )
|
| |
connect, a few GET requests, disconnect.
|
| Returns |
void |
|