LogentriesCore.Net.LeClient.Close C# (CSharp) Method

Close() public method

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

Usage Example

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