6 overrides of WriteCommentAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
181public override Task WriteCommentAsync(string? text)
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
427public override Task WriteCommentAsync(string? text)
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
397public override async Task WriteCommentAsync(string? text)
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
355public override async Task WriteCommentAsync(string? text)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
769public override async Task WriteCommentAsync(string? text)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
65public override Task WriteCommentAsync(string? text)
9 references to WriteCommentAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
184return SetLastTask(CoreWriter.WriteCommentAsync(text));
System.Private.Xml (7)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
430var task = _coreWriter.WriteCommentAsync(text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
130return writer.WriteCommentAsync(text);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
776await _writer.WriteCommentAsync(text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
67return writer.WriteCommentAsync(text);
System\Xml\Core\XmlWriterAsync.cs (3)
346await WriteCommentAsync(reader.Value).ConfigureAwait(false); 409await WriteCommentAsync(reader.Value).ConfigureAwait(false); 479await WriteCommentAsync(navigator.Value).ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XComment.cs (1)
114return writer.WriteCommentAsync(value);