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