5 overrides of WriteCommentAsync
System.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
360public override Task WriteCommentAsync(string text) {
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
299public override async Task WriteCommentAsync( string text ) {
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
283public override async Task WriteCommentAsync( string text ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
626public override async Task WriteCommentAsync(string text) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
54public override Task WriteCommentAsync(string text) {
7 references to WriteCommentAsync
System.Xml (7)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
362var task = coreWriter.WriteCommentAsync(text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
99return writer.WriteCommentAsync( text );
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
632await writer.WriteCommentAsync(text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
55return writer.WriteCommentAsync(text);
System\Xml\Core\XmlWriterAsync.cs (3)
314await WriteCommentAsync(reader.Value).ConfigureAwait(false); 374await WriteCommentAsync(reader.Value).ConfigureAwait(false); 436await WriteCommentAsync(navigator.Value).ConfigureAwait(false);