从服务器发送列表,但如何在客户端中打印(WCF)C#
我有一个服务器\客户端(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)