Example #1
0
 public override void WriteDataObjectBegin(DataObject str)
 {
     WriteJSONObjectStart();
 }
Example #2
0
 /**
  * Write a struct begin. This doesn't actually put anything on the wire. We
  * use it as an opportunity to put special placeholder markers on the field
  * stack so we can get the field id deltas correct.
  */
 public override void WriteDataObjectBegin(DataObject strct)
 {
     lastField_.Push(lastFieldId_);
     lastFieldId_ = 0;
 }
Example #3
0
 public override void WriteDataObjectBegin(DataObject struc)
 {
 }
Example #4
0
 public abstract void WriteDataObjectBegin(DataObject data);