Builderdash.MasterServer.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            if (_serviceHost != null &&
               _serviceHost.State == CommunicationState.Opened)
                _serviceHost.Close();

            Trace.Information("Stopped");
        }