| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- using System;
- using System.IO;
- namespace System.Xml
- {
- public abstract class XmlDictionaryWriter : XmlShimWriter
- {
- protected XmlDictionaryWriter ()
- {
- }
- public bool CanCanonicalize {
- get { return false; }
- }
- public bool CanFragment {
- get { return false; }
- }
- // FIXME: add a bunch of factory methods
- public void EndCanonicalization ()
- {
- throw new NotSupportedException ();
- }
- public void EndFragment ()
- {
- throw new NotSupportedException ();
- }
- public void StartCanonicalization (XmlCanonicalWriter writer)
- {
- throw new NotSupportedException ();
- }
- public void StartFragment (Stream stream)
- {
- throw new NotSupportedException ();
- }
- // FIXME: add Write*Array() overloads.
- public void WriteAttributeString (
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri,
- string value)
- {
- throw new NotSupportedException ();
- }
- public void WriteAttributeString (string prefix,
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri,
- string value)
- {
- throw new NotSupportedException ();
- }
- public void WriteElementString (
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri,
- string value)
- {
- throw new NotSupportedException ();
- }
- public void WriteElementString (string prefix,
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri,
- string value)
- {
- throw new NotSupportedException ();
- }
- public void WriteFragment (byte [] buffer, int offset,
- int count)
- {
- throw new NotSupportedException ();
- }
- public void WriteNode (XmlDictionaryReader reader,
- bool defattr)
- {
- throw new NotSupportedException ();
- }
- public void WriteQualifiedName (
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteStartAttribute (
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteStartAttribute (string prefix,
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteStartElement (
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteStartElement (string prefix,
- XmlDictionaryString localName,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteString (XmlDictionaryString value)
- {
- throw new NotSupportedException ();
- }
- public void WriteValue (UniqueId id)
- {
- throw new NotSupportedException ();
- }
- public void WriteValue (XmlDictionaryString value)
- {
- throw new NotSupportedException ();
- }
- public void WriteXmlAttribute (string localName, string value)
- {
- throw new NotSupportedException ();
- }
- public void WriteXmlAttribute (XmlDictionaryString localName,
- XmlDictionaryString value)
- {
- throw new NotSupportedException ();
- }
- public void WriteXmlnsAttribute (
- string prefix, string namespaceUri)
- {
- throw new NotSupportedException ();
- }
- public void WriteXmlnsAttribute (string prefix,
- XmlDictionaryString namespaceUri)
- {
- throw new NotSupportedException ();
- }
- }
- }
|