5 overrides of WriteBase64Async
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryWriter.cs (1)
77
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
507
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
System\Xml\Core\XmlRawWriterAsync.cs (1)
79
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
1075
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
115
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
4 references to WriteBase64Async
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
510
var task = _coreWriter.
WriteBase64Async
(buffer, index, count);
System\Xml\Core\XmlWellFormedWriterAsync.cs (2)
1088
return TryReturnTask(_writer.
WriteBase64Async
(buffer, index, count));
1107
await _writer.
WriteBase64Async
(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
117
return writer.
WriteBase64Async
(buffer, index, count);