CentralMine.NET.Upstream.Destroy C# (CSharp) Method

Destroy() public method

public Destroy ( ) : void
return void
        public virtual void Destroy()
        {
        }

Usage Example

        public void Close()
        {
            mUpstream.Destroy();

            // Kill the listener
            mListener.Close();

            // Kill the update thread
            mUpdateThread.Abort();

            // Close all clients
            foreach (Client c in mClients)
            {
                c.Close();
            }

            // Close the event log
            mEventLog.Close();
        }