Esempio n. 1
0
        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public void Dispose()
        {
            try
            {
                _client.Close();
            }
            catch (Exception ex)
            {
                Log.Debug(ex.Message);
                _client.Abort();
            }

            this._client = null;
            GC.SuppressFinalize(this);
        }
Esempio n. 2
0
        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public void Dispose()
        {
            try
            {
                _client.Close();
            }
            catch (Exception ex)
            {
                Log.Debug(string.Format("SaltServiceProxy:Dispose error {0}", ex.Message));
                _client.Abort();
            }

            this._client = null;
            GC.SuppressFinalize(this);
        }