LogentriesCore.Net.LeClient.Close C# (CSharp) Méthode

Close() public méthode

public Close ( ) : void
Résultat void
        public void Close()
        {
            if (m_Client != null)
            {
                try
                {
                    m_Client.Close();
                }
                catch
                {
                }
            }
        }
    }

Usage Example

Exemple #1
0
 protected virtual void CloseConnection()
 {
     if (LeClient != null)
     {
         LeClient.Close();
     }
 }
All Usage Examples Of LogentriesCore.Net.LeClient::Close