5 references to CreateTextReader
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryReader.cs (1)
92return CreateTextReader(buffer, 0, buffer.Length, quotas);
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\TextMessageEncoder.cs (2)
540XmlDictionaryReader xmlDictionaryReader = XmlDictionaryReader.CreateTextReader(messageData.Array, messageData.Offset, messageData.Count, XmlDictionaryReaderQuotas.Max); 755return XmlDictionaryReader.CreateTextReader(buffer.Array, buffer.Offset, buffer.Count, Quotas);
System\ServiceModel\Dispatcher\XmlSerializerOperationFormatter.cs (1)
238XmlDictionaryReader bufferReader = XmlDictionaryReader.CreateTextReader(memoryBuffer.Array, 0, (int)memoryStream.Length, XmlDictionaryReaderQuotas.Max);
System\ServiceModel\Security\SecurityVerifiedMessage.cs (1)
145XmlDictionaryReader reader = XmlDictionaryReader.CreateTextReader(_decryptedBuffer, 0, _decryptedBuffer.Length, ReceivedSecurityHeader.ReaderQuotas);