コード例 #1
0
ファイル: ServiceHost.cs プロジェクト: heinschulie/z2z
 /// <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;
         }
 }
コード例 #2
0
ファイル: ServiceHost.cs プロジェクト: heinschulie/z2z
 public ServiceHost(string aUrl)
 {
     _webService = new Z2ZService.Z2ZWebMethods() { Url = aUrl };
 }