14 overrides of ReadContentAsBase64
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
597public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlCharCheckingReader.cs (1)
405public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReader.cs (1)
819public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReader.cs (1)
303public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
1599public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReader.cs (1)
232public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlValidatingReaderImpl.cs (1)
623public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (1)
1530public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (1)
1813public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
232public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorReader.cs (1)
853public override int ReadContentAsBase64(byte[] buffer, int index, int count)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (1)
123public override int ReadContentAsBase64(byte[] buffer, int index, int count) { return InnerReader.ReadContentAsBase64(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (1)
1333public override int ReadContentAsBase64(byte[] buffer, int offset, int count)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (1)
1494public override int ReadContentAsBase64(byte[] buffer, int offset, int count)
15 references to ReadContentAsBase64
dotnet-svcutil-lib (15)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlAsyncCheckReader.cs (1)
600return _coreReader.ReadContentAsBase64(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlCharCheckingReader.cs (2)
420return base.ReadContentAsBase64(buffer, index, count); 433return base.ReadContentAsBase64(buffer, index, count);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReader.cs (5)
868return reader.ReadContentAsBase64(buffer, index, count); 879int read = reader.ReadContentAsBase64(buffer, index, count); 918int read = reader.ReadContentAsBase64(buffer, index, count); 1392while (reader.ReadContentAsBase64(bytes, 0, 256) > 0) ; 1426while (reader.ReadContentAsBase64(bytes, 0, 256) > 0) ;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlCountingReader.cs (1)
235return _innerReader.ReadContentAsBase64(buffer, index, count);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlSerializableReader.cs (1)
123public override int ReadContentAsBase64(byte[] buffer, int index, int count) { return InnerReader.ReadContentAsBase64(buffer, index, count); }
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlDictionaryReader.cs (3)
312int actual = ReadContentAsBase64(buffer, read, length - read); 415actual = ReadContentAsBase64(buffer, read, buffer.Length - read); 1496return _reader.ReadContentAsBase64(buffer, offset, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (1)
276int bytesRead = _reader.ReadContentAsBase64(buffer, offset, count);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (1)
438int actual = reader.ReadContentAsBase64(buffer, read, buffer.Length - read);