Search Results

0
votes

Can ADO.NET Data Services use named pipes as a transport

In .NET 3.5 there is built-in named pipe binding for WCF. See the MSDN for details. …
1
vote

Handling WCF Deserialization of DateTime objects

If I understand the problem correctly, you could solve this in post processing by simply using DateTime.ToUniversalTime() on the service side. For your example this should get you a Da …