5 overrides of WriteProcessingInstructionAsync
System.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
367public override Task WriteProcessingInstructionAsync(string name, string text) {
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
318public override async Task WriteProcessingInstructionAsync( string name, string text ) {
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
300public override async Task WriteProcessingInstructionAsync( string name, string text ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
640public override async Task WriteProcessingInstructionAsync(string name, string text) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
58public override Task WriteProcessingInstructionAsync(string name, string text) {
8 references to WriteProcessingInstructionAsync
System.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
369var task = coreWriter.WriteProcessingInstructionAsync(name, text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
115return writer.WriteProcessingInstructionAsync(name, text);
System\Xml\Core\XmlWellFormedWriterAsync.cs (2)
667await writer.WriteProcessingInstructionAsync(name, text).ConfigureAwait(false); 672await writer.WriteProcessingInstructionAsync(name, text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
59return writer.WriteProcessingInstructionAsync(name, text);
System\Xml\Core\XmlWriterAsync.cs (3)
307await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 367await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 439await WriteProcessingInstructionAsync(navigator.LocalName, navigator.Value).ConfigureAwait(false);