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

findAll() public static méthode

public static findAll ( Type t ) : List
t Type
Résultat List
        public static List findAll(Type t)
        {
            string qname = t.qname();
              List list = new List(Sys.ServiceType);
              lock (m_lock)
              {
            Node node = (Node)byType[qname];
            while (node != null)
            {
              list.add(node.service);
              node = node.next;
            }
              }
              return list.ro();
        }