Binary serialization of datasets parameters in web services

Posted by Someone on Stack Overflow See other posts from Stack Overflow or by Someone
Published on 2010-06-07T22:58:28Z Indexed on 2010/06/07 23:02 UTC
Read the original article Hit count: 205

Filed under:
|
|
|

In a system with both ends (client and server) in .NET, is it possible to use the binary serialization provided by the dataset class in ADO.NET 2.0 when the datasets are exposed as WebMethods parameters ?

Is it ok to use something like the following just before the dataset is returned:

someDataSet.RemotingFormat = SerializationFormat.Binary;

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET