|
| static bool | InternetGetConnectedState (out int Description, int ReservedValue) |
| |
| static bool | IsInternetConnectionAvailable () |
| |
| static void | Get (string address, Dictionary< string, string > parameters, Dictionary< string, string > headers, CancellableProgress progress, Action< byte[]> success, Action< Exception > failure) |
| |
| static void | Put (string address, Dictionary< string, string > parameters, Dictionary< string, string > headers, Stream data, CancellableProgress progress, Action< byte[]> success, Action< Exception > failure) |
| |
| static void | Post (string address, Dictionary< string, string > parameters, Dictionary< string, string > headers, Stream data, CancellableProgress progress, Action< byte[]> success, Action< Exception > failure) |
| |
| static string | UrlParametersToString (Dictionary< string, string > values) |
| |
| static byte[] | UrlParametersToBytes (Dictionary< string, string > values) |
| |
| static MemoryStream | UrlParametersToStream (Dictionary< string, string > values) |
| |
| static Dictionary< string, string > | UrlParametersFromString (string s) |
| |
| static Dictionary< string, string > | UrlParametersFromBytes (byte[] bytes) |
| |
| static void | PutOrPost (bool isPost, string address, Dictionary< string, string > parameters, Dictionary< string, string > headers, Stream data, CancellableProgress progress, Action< byte[]> success, Action< Exception > failure) |
| |
| static async Task | VerifyResponse (HttpResponseMessage message) |
| |