Meta.ActiveObject.Shutdown C# (CSharp) Method

Shutdown() public method

Signals to shutdown this active object
public Shutdown ( ) : void
return void
        public void Shutdown()
        {
            m_ShutdownEvent.Set();

            if (m_ActiveThreadContext != null)
            {
                m_ActiveThreadContext.Join();
            }

            m_ActiveThreadContext = null;
        }