.net WCF DateTime
- by freddy smith
I want to be able to safely send DateTime's over WCF without having to worry about any implicit or automatic TimeZone conversions. The dates I want to send are "logical" dates. year month day, there should be no time component.
I have various server processes and client process that run on a variety of machines with different TimeZone settings.
What I would like to ensure is that when a user enters a date in a textfield (or uses a date picker component) on any client that exact what they see at data entry is what is sent over WCF, used by the server and seen by other clients when they request the data.
I am a little confused by the various questions and answers on this site concerning DateTime.Kind (unspecified, UTC, local).