Exemplo n.º 1
0
 public XmlRichDocument(bool ignoreCase, bool lowBoolCharacter)
 {
     this.ignoreCase = ignoreCase;
     this.lowBoolCharacter = lowBoolCharacter;
     this.nodeMedia = new XmlNodeMedia(this);
     this.attributeMedia = new XmlAttributeMdedia(this);
     this.nodeValueReader = new XmlNodeValueReader(nodeMedia, ignoreCase);
     this.nodeValueWriter = new XmlNodeValueWriter(nodeMedia, ignoreCase);
     this.attributeValueReader = new XmlAttributeValueReader(attributeMedia, ignoreCase);
     this.attributeValueWriter = new XmlAttributeValueWriter(attributeMedia, ignoreCase);
 }
Exemplo n.º 2
0
 public XmlNodeValueWriter(XmlNodeMedia media, bool ignoreCase)
     : base(ignoreCase)
 {
     this.media = media;
 }