Example #1
0
 public abstract void WriteDictionaryItemStart(DictionaryItemHeader header);
Example #2
0
 public override void WriteDictionaryItemStart(DictionaryItemHeader header)
 {
     this.WriteStringValue(header.KeyType);
     this.WriteStringValue(header.ValueType);
 }
Example #3
0
 public override void WriteDictionaryItemStart(DictionaryItemHeader header)
 {
     this.EncoderStream.WriteStartElement("DictionaryItem");
     this.EncoderStream.WriteAttributeString("KeyType", header.KeyType);
     this.EncoderStream.WriteAttributeString("ValueType", header.ValueType);
 }