public void Serialize(LogSerializeContext context, bool hash) { LogHeader.Serialize(this, context, hash); if (!hash) { context.bw.WriteVarBuffer(Hash); } SerializeObjects(context, hash); }
internal LogEntry(LogDeserializeContext context) { LogHeader.Deserialize(this, context); Hash = context.br.ReadVarBuffer(); DeserializeObjects(context); }