Ejemplo n.º 1
0
		public PocoClient(IPocoRuntime runtime)
		{
			_pocoRuntime = runtime;
			if (runtime.Handler == null)
				_httpClient = new HttpClient();
			else
				_httpClient = new HttpClient(runtime.Handler, runtime.DisposeHandler);
	
		}
Ejemplo n.º 2
0
 public PocoClient(IPocoRuntime runtime)
 {
     _pocoRuntime = runtime;
     if (runtime.Handler == null)
     {
         _httpClient = new HttpClient();
     }
     else
     {
         _httpClient = new HttpClient(runtime.Handler, runtime.DisposeHandler);
     }
 }