Sorry if this issue has been beaten to death, but I can't seem to find a good answer to my question.
I have written a .NET 2.0 client that consumes a web service. The web method I call returns several DateTime values in UTC format.
It appears that the values are being deserialized as DateTimeKind.Local. I assume this is the default behavior for the .NET SOAP framework. However, I need the values to be DateTimeKind.Unspecified.
What are my options for overriding the deserialization of these DateTime values?