Ejemplo n.º 1
0
 /// <summary>
 /// Releases unmanaged and - optionally - managed resources
 /// </summary>
 /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
         if (_webService != null)
         {
             _webService.Dispose();
             _webService = null;
         }
 }
Ejemplo n.º 2
0
 public ServiceHost(string aUrl)
 {
     _webService = new Z2ZService.Z2ZWebMethods() { Url = aUrl };
 }