6 overrides of GetValueAsync
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
779
public override Task<string>
GetValueAsync
()
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
30
public override Task<string>
GetValueAsync
()
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
20
public override Task<string>
GetValueAsync
()
System\Xml\Core\XmlWrappingReaderAsync.cs (1)
15
public override Task<string>
GetValueAsync
()
System\Xml\Core\XsdCachingReaderAsync.cs (1)
18
public override Task<string>
GetValueAsync
()
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
20
public override Task<string>
GetValueAsync
()
29 references to GetValueAsync
System.Private.Xml (16)
System\Xml\Core\ReadContentAsBinaryHelperAsync.cs (1)
288
string value = await _reader.
GetValueAsync
().ConfigureAwait(false);
System\Xml\Core\XmlAsyncCheckReader.cs (1)
782
var task = _coreReader.
GetValueAsync
();
System\Xml\Core\XmlCharCheckingReaderAsync.cs (3)
119
CheckCharacters(await base.reader.
GetValueAsync
().ConfigureAwait(false));
193
CheckWhitespace(await base.reader.
GetValueAsync
().ConfigureAwait(false));
200
CheckWhitespace(await base.reader.
GetValueAsync
().ConfigureAwait(false));
System\Xml\Core\XmlReaderAsync.cs (4)
229
xtw.WriteString(await
GetValueAsync
().ConfigureAwait(false));
233
xtw.WriteWhitespace(await
GetValueAsync
().ConfigureAwait(false));
339
value = await
GetValueAsync
().ConfigureAwait(false);
344
sb.Append(await
GetValueAsync
().ConfigureAwait(false));
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
24
return reader.
GetValueAsync
();
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
22
return _coreReader.
GetValueAsync
();
System\Xml\Core\XmlWrappingReaderAsync.cs (1)
17
return reader.
GetValueAsync
();
System\Xml\Core\XmlWriterAsync.cs (2)
387
await WriteStringAsync(await reader.
GetValueAsync
().ConfigureAwait(false)).ConfigureAwait(false);
392
await WriteWhitespaceAsync(await reader.
GetValueAsync
().ConfigureAwait(false)).ConfigureAwait(false);
System\Xml\Core\XsdCachingReaderAsync.cs (1)
63
recordedNode.SetItemData(await _coreReader.
GetValueAsync
().ConfigureAwait(false));
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
28
return _coreReader.
GetValueAsync
();
System.Private.Xml.Linq (13)
System\Xml\Linq\XContainer.cs (13)
1028
BufferText(await r.
GetValueAsync
().ConfigureAwait(false));
1045
await r.
GetValueAsync
().ConfigureAwait(false)));
1061
_currentContainer.AddNodeSkipNotify(new XCData(await r.
GetValueAsync
().ConfigureAwait(false)));
1064
_currentContainer.AddNodeSkipNotify(new XComment(await r.
GetValueAsync
().ConfigureAwait(false)));
1067
_currentContainer.AddNodeSkipNotify(new XProcessingInstruction(r.Name, await r.
GetValueAsync
().ConfigureAwait(false)));
1070
_currentContainer.AddNodeSkipNotify(new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.
GetValueAsync
().ConfigureAwait(false)));
1218
BufferText(await r.
GetValueAsync
().ConfigureAwait(false));
1244
await r.
GetValueAsync
().ConfigureAwait(false));
1288
newNode = new XText(await r.
GetValueAsync
().ConfigureAwait(false));
1291
newNode = new XCData(await r.
GetValueAsync
().ConfigureAwait(false));
1294
newNode = new XComment(await r.
GetValueAsync
().ConfigureAwait(false));
1297
newNode = new XProcessingInstruction(r.Name, await r.
GetValueAsync
().ConfigureAwait(false));
1300
newNode = new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.
GetValueAsync
().ConfigureAwait(false));