Пример #1
0
 public NetworkHandler(string pMethodName, Dictionary <string, string> pParams, INetworkFetcherInterface pDel, int pTag)
 {
     _delegate   = pDel;
     _methodName = pMethodName;
     _params     = pParams;
     _requestTag = pTag;
     _serverUrl  = Constants.Constants.APP_SERVER_URL;
 }
Пример #2
0
 public void SetDelegate(INetworkFetcherInterface pDel)
 {
     _delegate = pDel;
 }