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)
1623if (_incReadDecoder == _base64Decoder) 1683if (_incReadDecoder == _binHexDecoder) 1742if (_incReadDecoder == _base64Decoder) 1802if (_incReadDecoder == _binHexDecoder) 2273if (_incReadDecoder != _readCharsDecoder) 2315if (_incReadDecoder != _base64Decoder) 2352if (_incReadDecoder != _binHexDecoder) 8283throw new ArgumentNullException((_incReadDecoder is IncrementalReadCharsDecoder) ? "buffer" : "array"); 8287throw new ArgumentOutOfRangeException((_incReadDecoder is IncrementalReadCharsDecoder) ? "count" : "len"); 8291throw new ArgumentOutOfRangeException((_incReadDecoder is IncrementalReadCharsDecoder) ? "index" : "offset"); 8295throw new ArgumentException((_incReadDecoder is IncrementalReadCharsDecoder) ? "count" : "len"); 8305_incReadDecoder.SetNextOutputBuffer(array, index, count); 8307return _incReadDecoder.DecodedCount; 8321count = _incReadDecoder.Decode(_ps.chars, _incReadLeftStartPos, charsLeft); 8339if (_incReadDecoder.IsFull) 8646count = _incReadDecoder.Decode(_ps.chars, startPos, charsParsed); 8653Debug.Assert(count == charsParsed || _incReadDecoder.IsFull, "Check if decoded consumed all characters unless it's full."); 8655if (_incReadDecoder.IsFull) 9478Debug.Assert(_incReadDecoder != null); 9485_incReadDecoder.SetNextOutputBuffer(buffer, index, count); 9493charsRead = _curNode.CopyToBinary(_incReadDecoder, _readValueOffset); 9503if (_incReadDecoder.IsFull) 9505return _incReadDecoder.DecodedCount; 9517while (!_incReadDecoder.IsFull && !endOfValue) 9527charsRead = _incReadDecoder.Decode(_ps.chars, startPos, endPos - startPos); 9539if (_incReadDecoder.IsFull) 9545return _incReadDecoder.DecodedCount; 9559return _incReadDecoder.DecodedCount;