Esempio n. 1
0
 // PROTECTED READERS / WRITERS
 // See description of this method in the abstract base class SRZoneProperty.
 protected override void ReadData(SRBinaryReader binaryReader, int size)
 {
     data = new SRRawDataBlock(binaryReader, size);
     SRTrace.WriteLine("        Value:     " + data.ToString());
 }
Esempio n. 2
0
 // See description of this method in the abstract base class SRZoneProperty.
 protected override void ReadXmlData(XmlNode thisNode)
 {
     data = new SRRawDataBlock(thisNode);
 }
Esempio n. 3
0
 // CONSTRUCTORS
 public SRZoneDataProperty(UInt16 type, Int32 nameCrc, SRRawDataBlock data = null)
 {
     this.type = type;
     this.nameCrc = nameCrc;
     this.data = data;
 }