Exemplo n.º 1
0
 public void Write(string name, ISharedObjectSerializable value)
 {
     if (value != null)
     {
         this.writer.Write(true);
         value.Serialize(this);
     }
     else
     {
         this.writer.Write(false);
     }
 }
Exemplo n.º 2
0
 public void Write(string name, ISharedObjectSerializable value)
 {
     if (value != null)
     {
         if (!string.IsNullOrEmpty(name))
         {
             this.writer.WritePropertyName(name);
         }
         this.writer.WriteStartObject();
         value.Serialize(this);
         this.writer.WriteEndObject();
     }
 }