WCF入门(三)——对象序列化

对象序列化 WCF是通过网络实现远程方法调用的,因此参数,返回值等都需要序列化才能在网络间传输。例如,对于下面的一个服务:     [ServiceContract]     public interface IService1     {         [OperationContract]         Point GetRandomPoint();     }     public cl
相关文章
相关标签/搜索