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