Fan.Sys.Service_.isRunning C# (CSharp) Méthode

isRunning() public static méthode

public static isRunning ( Service self ) : bool
self Service
Résultat bool
        public static bool isRunning(Service self)
        {
            lock (m_lock)
              {
            State state = (State)byService[self];
            return state != null && state.running;
              }
        }