10 references to GetReaderAtBodyContents
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Message.cs (2)
234XmlDictionaryReader reader = GetReaderAtBodyContents(); // This call will change the message state to Read. 247return this.GetBodyCore<T>(GetReaderAtBodyContents(), serializer);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\MessageFault.cs (1)
63XmlDictionaryReader reader = message.GetReaderAtBodyContents();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (2)
1053return response.GetReaderAtBodyContents(); 1141using (XmlReader reader = response.GetReaderAtBodyContents())
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ClientRuntime.cs (1)
480using (XmlDictionaryReader reader = copy.GetReaderAtBodyContents())
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\OperationFormatter.cs (1)
245XmlDictionaryReader reader = message.GetReaderAtBodyContents();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\PrimitiveOperationFormatter.cs (2)
384XmlDictionaryReader bodyReader = message.GetReaderAtBodyContents(); 424XmlDictionaryReader bodyReader = message.GetReaderAtBodyContents();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\StreamFormatter.cs (1)
257_reader = _message.GetReaderAtBodyContents();