Dev2.Services.ServerServiceConfiguration.DoesServiceExist C# (CSharp) Method

DoesServiceExist() public method

public DoesServiceExist ( ) : bool
return bool
        public bool DoesServiceExist()
        {
            if(!ServiceManager.Exists())
            {
                PopupController.Show("The Warewolf service isn't installed. Please re-install the Warewolf server.", "Server Missing", MessageBoxButton.OK, MessageBoxImage.Error, null);
                return false;
            }

            return true;
        }