从服务器发送列表,但如何在客户端中打印(WCF)C#

发布于 2024-11-26 12:45:58 字数 831 浏览 0 评论 0原文

我有一个服务器\客户端(WCF)应用程序,我需要将字符串列表从服务器发送到客户端 假设服务器上的功能

List<string> RetrieveEmp (){
:
:
:

return EmpName.ToList();
}

我想在客户端显示员工姓名列表(win Phone 7 应用程序)

    client.RetrieveEmpCompleted += new EventHandler<RetrieveEmpCompletedEventArgs>(client_RetrieveEmpCompleted)

   client. RetrieveEmpAsync();

我尝试这样做,

  void client_RetrieveEmpCompleted(object sender, RetrieveEmpCompletedEventArgs e(
        {
         // I tried to do it like that 
         //  foreach (var i in e.Result.ToList())
        // {
                listBox1.ItemsSource = e.Result;//e.ResultElementAt(1)
            //}
        }

但它不起作用 >,任何形式的帮助如果您提供任何示例代码,我将非常感谢您,我很感激。 谢谢你,

i have a server\client (WCF) application, i need to send a list of string from the server to the client
let's say the function on the server

List<string> RetrieveEmp (){
:
:
:

return EmpName.ToList();
}

I want to show the Employees name's list in client side (win phone 7 app)

    client.RetrieveEmpCompleted += new EventHandler<RetrieveEmpCompletedEventArgs>(client_RetrieveEmpCompleted)

   client. RetrieveEmpAsync();

I tried to do it like that

  void client_RetrieveEmpCompleted(object sender, RetrieveEmpCompletedEventArgs e(
        {
         // I tried to do it like that 
         //  foreach (var i in e.Result.ToList())
        // {
                listBox1.ItemsSource = e.Result;//e.ResultElementAt(1)
            //}
        }

But it doesn't work, any kind of help I will be so thankful to you, I appreciate, if you provide any sample code.
thank you,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-12-03 12:45:58
List<String>RetrieveEmp 
{
DataClasses1DataContext context = new DataClasses1DataContext();
from (r in context.tablename select r.EmpName).toList();
}
List<String>RetrieveEmp 
{
DataClasses1DataContext context = new DataClasses1DataContext();
from (r in context.tablename select r.EmpName).toList();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文