10 overrides of WriteChars
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
237public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlRawWriter.cs (1)
172public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextWriter.cs (1)
861public override void WriteChars(Char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1104public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
159public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
88public override void WriteChars(Char[] buffer, int index, int count) { _xmlWriter.WriteChars(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
994public override void WriteChars(char[] chars, int offset, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
126public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
646public override void WriteChars(char[] buffer, int index, int count)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
59public override void WriteChars(char[] buffer, int index, int count)
13 references to WriteChars
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
242_wrapped.WriteChars(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlCharCheckingWriter.cs (1)
317writer.WriteChars(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (1)
1132_writer.WriteChars(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (2)
373writer.WriteChars(bufChunk.buffer, bufChunk.index, bufChunk.count); 380writer.WriteChars(bufChunk.buffer, bufChunk.index, bufChunk.count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWrappingWriter.cs (1)
161writer.WriteChars(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriter.cs (1)
432this.WriteChars(_writeNodeBuffer, 0, read);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableWriter.cs (1)
88public override void WriteChars(Char[] buffer, int index, int count) { _xmlWriter.WriteChars(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
129CoreWriter.WriteChars(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryWriter.cs (1)
648_writer.WriteChars(buffer, index, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
61this.Writer.WriteChars(buffer, index, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSUtilitySpecificationVersion.cs (2)
98writer.WriteChars(creationTime, 0, creationTime.Length); 103writer.WriteChars(expiryTime, 0, expiryTime.Length);