6 writes to _incReadDecoder
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (6)
2280
_incReadDecoder
= _readCharsDecoder;
8269
_incReadDecoder
= decoder;
8668
_incReadDecoder
= new IncrementalReadDummyDecoder();
8671
_incReadDecoder
= null;
9604
_incReadDecoder
= _base64Decoder;
9617
_incReadDecoder
= _binHexDecoder;
28 references to _incReadDecoder
dotnet-svcutil-lib (28)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (28)
1623
if (
_incReadDecoder
== _base64Decoder)
1683
if (
_incReadDecoder
== _binHexDecoder)
1742
if (
_incReadDecoder
== _base64Decoder)
1802
if (
_incReadDecoder
== _binHexDecoder)
2273
if (
_incReadDecoder
!= _readCharsDecoder)
2315
if (
_incReadDecoder
!= _base64Decoder)
2352
if (
_incReadDecoder
!= _binHexDecoder)
8283
throw new ArgumentNullException((
_incReadDecoder
is IncrementalReadCharsDecoder) ? "buffer" : "array");
8287
throw new ArgumentOutOfRangeException((
_incReadDecoder
is IncrementalReadCharsDecoder) ? "count" : "len");
8291
throw new ArgumentOutOfRangeException((
_incReadDecoder
is IncrementalReadCharsDecoder) ? "index" : "offset");
8295
throw new ArgumentException((
_incReadDecoder
is IncrementalReadCharsDecoder) ? "count" : "len");
8305
_incReadDecoder
.SetNextOutputBuffer(array, index, count);
8307
return
_incReadDecoder
.DecodedCount;
8321
count =
_incReadDecoder
.Decode(_ps.chars, _incReadLeftStartPos, charsLeft);
8339
if (
_incReadDecoder
.IsFull)
8646
count =
_incReadDecoder
.Decode(_ps.chars, startPos, charsParsed);
8653
Debug.Assert(count == charsParsed ||
_incReadDecoder
.IsFull, "Check if decoded consumed all characters unless it's full.");
8655
if (
_incReadDecoder
.IsFull)
9478
Debug.Assert(
_incReadDecoder
!= null);
9485
_incReadDecoder
.SetNextOutputBuffer(buffer, index, count);
9493
charsRead = _curNode.CopyToBinary(
_incReadDecoder
, _readValueOffset);
9503
if (
_incReadDecoder
.IsFull)
9505
return
_incReadDecoder
.DecodedCount;
9517
while (!
_incReadDecoder
.IsFull && !endOfValue)
9527
charsRead =
_incReadDecoder
.Decode(_ps.chars, startPos, endPos - startPos);
9539
if (
_incReadDecoder
.IsFull)
9545
return
_incReadDecoder
.DecodedCount;
9559
return
_incReadDecoder
.DecodedCount;