public SdtParser(TreeNode nodeToAdd)
 {
     baseNode               = nodeToAdd;
     servicesReceived       = new List <ulong>();
     dec1                   = new SectionDecoder(0x11, 0x42);
     dec1.OnSectionDecoded += OnNewSection;
     dec2                   = new SectionDecoder(0x11, 0x46);
     dec2.OnSectionDecoded += OnNewSection;
 }
Пример #2
0
 public SdtParser(TreeNode nodeToAdd)
 {
   baseNode = nodeToAdd;
   servicesReceived = new List<ulong>();
   dec1 = new SectionDecoder(0x11, 0x42);
   dec1.OnSectionDecoded += OnNewSection;
   dec2 = new SectionDecoder(0x11, 0x46);
   dec2.OnSectionDecoded += OnNewSection;
 }
Пример #3
0
 public NITParser(TreeNode nodeToAdd)
 {
     baseNode = nodeToAdd;
     seenNITs = new List <int>();
     dec1     = new SectionDecoder(0x10, 0x40);
     dec1.OnSectionDecoded += OnNewSection;
     dec2 = new SectionDecoder(0x10, 0x41);
     dec2.OnSectionDecoded += OnNewSection;
 }
Пример #4
0
 public NITParser(TreeNode nodeToAdd)
 {
   baseNode = nodeToAdd;
   seenNITs = new List<int>();
   dec1 = new SectionDecoder(0x10, 0x40);
   dec1.OnSectionDecoded += OnNewSection;
   dec2 = new SectionDecoder(0x10, 0x41);
   dec2.OnSectionDecoded += OnNewSection;
 }