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