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