|
- using System;
- using System.Collections.Generic;
-
- namespace CI.WSANative.Web
- {
- public static class WSANativeWebRequest
- {
- public static void GetString(string url, Action<bool, string> response)
- {
- }
-
- public static void GetBytes(string url, Action<bool, byte[]> response)
- {
- }
-
- public static void PostReturnString(string url, Dictionary<string, string> content, Action<bool, string> response)
- {
- }
-
- public static void PostReturnBytes(string url, Dictionary<string, string> content, Action<bool, byte[]> response)
- {
- }
- }
- }
|