// 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()); }
// See description of this method in the abstract base class SRZoneProperty. protected override void ReadXmlData(XmlNode thisNode) { data = new SRRawDataBlock(thisNode); }
// CONSTRUCTORS public SRZoneDataProperty(UInt16 type, Int32 nameCrc, SRRawDataBlock data = null) { this.type = type; this.nameCrc = nameCrc; this.data = data; }