10 overrides of WriteRaw
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
271public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlRawWriter.cs (1)
178public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextWriter.cs (1)
876public override void WriteRaw(Char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1142public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
164public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
89public override void WriteRaw(Char[] buffer, int index, int count) { _xmlWriter.WriteRaw(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
1051public override void WriteRaw(char[] chars, int offset, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
209public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
712public override void WriteRaw(char[] buffer, int index, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
109public override void WriteRaw(char[] buffer, int index, int count)
9 references to WriteRaw
dotnet-svcutil-lib (9)
FrameworkFork\Microsoft.Xml\Xml\BinHexEncoder.cs (1)
40writer.WriteRaw(chars, 0, charCount);
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
276_wrapped.WriteRaw(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1170_writer.WriteRaw(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
166writer.WriteRaw(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
89public override void WriteRaw(Char[] buffer, int index, int count) { _xmlWriter.WriteRaw(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (1)
61writer.WriteRaw(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
212CoreWriter.WriteRaw(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
714_writer.WriteRaw(buffer, index, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
111this.Writer.WriteRaw(buffer, index, count);