BF2Statistics.Gamespy.GamespyEmulator.Shutdown C# (CSharp) Method

Shutdown() public static method

Shutsdown all of the Gamespy Servers
public static Shutdown ( ) : void
return void
        public static void Shutdown()
        {
            // Shutdown Login Servers
            ClientManager.Shutdown();
            SearchProvider.Shutdown();
            MasterServer.Shutdown();
            CDKeyServer.Shutdown();

            // Update status
            bIsRunning = false;

            // Trigger the OnShutdown Event
            Stopped();
        }