예제 #1
0
        // Protected Methods (1) 

        protected void Dispose(bool disposing)
        {
            if (!disposing)
            {
                return;
            }

            try
            {
                _metadataService.Dispose();
            }
            catch { }

            try
            {
                _sforceService.Dispose();
            }
            catch { }

            try
            {
                _apexService.Dispose();
            }
            catch { }
        }
 public void Dispose()
 {
     _service.Dispose();
 }
예제 #3
0
 public void Dispose()
 {
     binding.Dispose();
 }
예제 #4
0
 /// <summary>
 /// Logouts this instance.
 /// </summary>
 public void Logout()
 {
     _binding.logout();
     _binding.Dispose();
 }