Exemplo n.º 1
0
 internal void Dispose(string ServiceURL)
 {
     //잘못된 URL형식 걸러내기
     if (!(ServiceURL.Contains("http://")) || (ServiceURL.Replace("http://", string.Empty).Length == 0))
     {
         return;
     }
     ServiceDic[ServiceURL].Dispose();
     ServiceDic.Remove(ServiceURL);
 }