How to get the original XML response from the created .NET SOAP client, rather than serialized objects?

I need to access a raw XML response from a SOAP .NET client (using svcutil). I believe that I can do this by intercepting it using custom behavior, but I really don't need deserialized objects at all (and most likely I won't be able to get a performance hit when they are created). Is there a way I can get around the default serialization and directly access the raw XML response?

+5
source share

All Articles