7 types derived from XmlRawWriter
dotnet-svcutil-lib (7)
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentBuilder.cs (1)
35internal sealed class XPathDocumentBuilder : XmlRawWriter
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriter.cs (1)
23internal class QueryOutputWriter : XmlRawWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAutoDetectWriter.cs (1)
20internal class XmlAutoDetectWriter : XmlRawWriter, IRemovableWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEncodedRawTextWriter.cs (1)
33internal partial class XmlEncodedRawTextWriter : XmlRawWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEventCache.cs (1)
18internal sealed class XmlEventCache : XmlRawWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlUtf8RawTextWriter.cs (1)
34internal partial class XmlUtf8RawTextWriter : XmlRawWriter
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
26internal sealed class DocumentXmlWriter : XmlRawWriter, IXmlNamespaceResolver
17 references to XmlRawWriter
dotnet-svcutil-lib (17)
FrameworkFork\Microsoft.Xml\Xml\Base64Encoder.cs (2)
115private XmlRawWriter _rawWriter; 117internal XmlRawWriterBase64Encoder(XmlRawWriter rawWriter)
FrameworkFork\Microsoft.Xml\Xml\Core\IRemovableWriter.cs (1)
14internal delegate void OnRemoveWriter(XmlRawWriter writer);
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriter.cs (2)
25private XmlRawWriter _wrapped; 34public QueryOutputWriter(XmlRawWriter writer, XmlWriterSettings settings)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAutoDetectWriter.cs (1)
22private XmlRawWriter _wrapped;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlEventCache.cs (2)
105XmlRawWriter rawWriter; 114rawWriter = writer as XmlRawWriter;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (3)
33private XmlRawWriter _rawWriter; // writer as XmlRawWriter 260_rawWriter = writer as XmlRawWriter; 1599internal XmlRawWriter RawWriter
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (3)
64internal void WriteEndElement(XmlRawWriter rawWriter) 69internal void WriteFullEndElement(XmlRawWriter rawWriter) 98internal void WriteDecl(XmlWriter writer, XmlRawWriter rawWriter)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriterSettings.cs (2)
583writer = new QueryOutputWriter((XmlRawWriter)writer, this); 642writer = new QueryOutputWriter((XmlRawWriter)writer, this);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathDocument.cs (1)
153internal XmlRawWriter LoadFromWriter(LoadFlags flags, string baseUri)