zoukankan      html  css  js  c++  java
  • WCF学习笔记——配置服务引用

    WCF传过来的东西要序列化。

    比如,在WCF服务中,象这么个方法

    public IEnumerable<UserItem> GetUserList()

    默认情况下,在客户端会调用,是这样:

    	//ServiceReference1,服务引用            
    	using (ServiceReference1.UserListClient client = new ServiceReference1.UserListClient())
            {
                ServiceReference1.UserItem[] list = client.GetUserList();
            }
    

    但是我们在WPF中,多用 ObservableCollection,那么如何转换?

    当然可以在代码中加以转换,但更省事的是配置服务引用:

    在VS中,右击这个服务引用,选配置服务引用,然后

    集合类型:System.Collections.ObjectModel.ObservableCollection

    字典集合类型:System.Collections.Generic.Dictionary


    如此,WCF服务中的IEnumerable,在客户端,即可自动换成 ObservableCollection 矣

  • 相关阅读:
    统计字符
    两军交锋
    FatMouse' Trade
    A + B Problem II
    Number Sequence
    Max Sum
    类的设计
    类与对象
    面向对象思想
    第一个OC程序
  • 原文地址:https://www.cnblogs.com/leftfist/p/4257916.html
Copyright © 2011-2022 走看看