6 overrides of WriteProcessingInstructionAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
295public override Task WriteProcessingInstructionAsync(string name, string? text)
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
435public override Task WriteProcessingInstructionAsync(string name, string? text)
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
417public override async Task WriteProcessingInstructionAsync(string name, string? text)
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
373public override async Task WriteProcessingInstructionAsync(string name, string? text)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
785public override async Task WriteProcessingInstructionAsync(string name, string? text)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
70public override Task WriteProcessingInstructionAsync(string name, string? text)
10 references to WriteProcessingInstructionAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
298return SetLastTask(CoreWriter.WriteProcessingInstructionAsync(name, text));
System.Private.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
438var task = _coreWriter.WriteProcessingInstructionAsync(name, text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
153return writer.WriteProcessingInstructionAsync(name, text!);
System\Xml\Core\XmlWellFormedWriterAsync.cs (2)
814await _writer.WriteProcessingInstructionAsync(name, text).ConfigureAwait(false); 820await _writer.WriteProcessingInstructionAsync(name, text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
72return writer.WriteProcessingInstructionAsync(name, text);
System\Xml\Core\XmlWriterAsync.cs (3)
339await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 402await WriteProcessingInstructionAsync(reader.Name, reader.Value).ConfigureAwait(false); 482await WriteProcessingInstructionAsync(navigator.LocalName, navigator.Value).ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XProcessingInstruction.cs (1)
140return writer.WriteProcessingInstructionAsync(target, data);