Example #1
0
 public void AddTLVDef(TLVDef field)
 {
     if (mMap == null)
     {
         mMap = new TLVDefs();
     }
     mMap.AddField(field);
 }
Example #2
0
 public TLVHandler(string schemaFile)
     : this()
 {
     mMap = new TLVDefs(schemaFile);
 }