7 overrides of GetValueAsync
System.Xml (7)
System\Xml\BinaryXml\XmlBinaryReaderAsync.cs (1)
22
public override Task<string>
GetValueAsync
() {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
660
public override Task<string>
GetValueAsync
() {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
37
public override Task<string>
GetValueAsync
() {
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
21
public override Task<string>
GetValueAsync
() {
System\Xml\Core\XmlWrappingReaderAsync.cs (1)
14
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
() {
16 references to GetValueAsync
System.Xml (16)
System\Xml\Core\ReadContentAsBinaryHelperAsync.cs (1)
280
string value = await reader.
GetValueAsync
().ConfigureAwait(false);
System\Xml\Core\XmlAsyncCheckReader.cs (1)
662
var task = coreReader.
GetValueAsync
();
System\Xml\Core\XmlCharCheckingReaderAsync.cs (3)
97
CheckCharacters( await base.reader.
GetValueAsync
().ConfigureAwait(false) );
159
CheckWhitespace( await base.reader.
GetValueAsync
().ConfigureAwait(false) );
165
CheckWhitespace( await base.reader.
GetValueAsync
().ConfigureAwait(false) );
System\Xml\Core\XmlReaderAsync.cs (4)
225
xtw.WriteString(await this.
GetValueAsync
().ConfigureAwait(false));
229
xtw.WriteWhitespace(await this.
GetValueAsync
().ConfigureAwait(false));
323
value = await this.
GetValueAsync
().ConfigureAwait(false);
330
sb.Append(await this.
GetValueAsync
().ConfigureAwait(false));
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
20
return reader.
GetValueAsync
();
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
22
return coreReader.
GetValueAsync
();
System\Xml\Core\XmlWrappingReaderAsync.cs (1)
15
return reader.
GetValueAsync
();
System\Xml\Core\XmlWriterAsync.cs (2)
352
await WriteStringAsync(await reader.
GetValueAsync
().ConfigureAwait(false)).ConfigureAwait(false);
357
await WriteWhitespaceAsync(await reader.
GetValueAsync
().ConfigureAwait(false)).ConfigureAwait(false);
System\Xml\Core\XsdCachingReaderAsync.cs (1)
56
recordedNode.SetItemData(await coreReader.
GetValueAsync
().ConfigureAwait(false));
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
24
return coreReader.
GetValueAsync
();