我有一个返回 Dictionary 对象的 WCF 服务。我创建了一个 ASP .NET Web 应用程序并添加了一个 Web 表单来测试该服务。我在 Web 应用程序中添加了我的 WCF 服务引用。现在,在以 Web 形式编写 Button1_Click 的代码时,我无法访问我的服务返回的 Dictionary 对象。代码如下所示: 请尽快提出解决方案。谢谢。
`using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using WebApplication1.wsHashOps;
namespace WebApplication1
{
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
string input = TextBox1.Text;
Service1 client = new Service1();
string data = "";
Dictionary<int, string> hh = client.getWsHashOperations(input);
string input = TextBox1.Text;
Service1 client = new Service1();
string data = "";
Dictionary<int, string> hh = client.getWsHashOperations(input);
}
}
}