RedisRipper.Workbench.WorkbenchFile.AllTransmitters C# (CSharp) Méthode

AllTransmitters() public méthode

Return all active transmitters.
public AllTransmitters ( ) : List
Résultat List
        public List<TRAN> AllTransmitters()
        {
            List<TRAN> transmitterList = (from TRAN x in Tran where x.ZoneID > 0 select x).ToList();
            SetTransmitterEventName(transmitterList);
            return transmitterList;
        }

Same methods

WorkbenchFile::AllTransmitters ( ushort zoneid ) : List