/// <summary>
 /// Flag notation the virtual server is online or not
 /// </summary>
 public bool IsRunning(bool cache = false)
 {
     if (!cache || _isRunning == null)
     {
         _isRunning = _server.isRunning();
     }
     return((bool)_isRunning);
 }