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)
228
xtw.WriteString(await
GetValueAsync
().ConfigureAwait(false));
232
xtw.WriteWhitespace(await
GetValueAsync
().ConfigureAwait(false));
338
value = await
GetValueAsync
().ConfigureAwait(false);
343
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)
967
await r.
GetValueAsync
().ConfigureAwait(false)));
985
_currentContainer.AddStringSkipNotify(await r.
GetValueAsync
().ConfigureAwait(false));
988
_currentContainer.AddNodeSkipNotify(new XCData(await r.
GetValueAsync
().ConfigureAwait(false)));
991
_currentContainer.AddNodeSkipNotify(new XComment(await r.
GetValueAsync
().ConfigureAwait(false)));
994
_currentContainer.AddNodeSkipNotify(new XProcessingInstruction(r.Name, await r.
GetValueAsync
().ConfigureAwait(false)));
997
_currentContainer.AddNodeSkipNotify(new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.
GetValueAsync
().ConfigureAwait(false)));
1149
await r.
GetValueAsync
().ConfigureAwait(false));
1194
newNode = new XText(await r.
GetValueAsync
().ConfigureAwait(false));
1198
_currentContainer.AddStringSkipNotify(await r.
GetValueAsync
().ConfigureAwait(false));
1202
newNode = new XCData(await r.
GetValueAsync
().ConfigureAwait(false));
1205
newNode = new XComment(await r.
GetValueAsync
().ConfigureAwait(false));
1208
newNode = new XProcessingInstruction(r.Name, await r.
GetValueAsync
().ConfigureAwait(false));
1211
newNode = new XDocumentType(r.LocalName, r.GetAttribute("PUBLIC"), r.GetAttribute("SYSTEM"), await r.
GetValueAsync
().ConfigureAwait(false));