-2

我想通过关联标签列出组我正在使用文本框来表示与我的服务中的 GET 方法相关的 TagName。在我的客户端,我有这个:

string uriGetGroupsCollection = "http://localhost:8000/Service/GetGroupsCollection/{TagName}";
private void button6_Click(object sender, EventArgs e)
{
    XDocument xDoc = XDocument.Load(uriGetGroupsCollection);
    var Tag = xDoc.Descendants("notsure")
        .Select(n => new
        {
            Tag = n.Element("notsure").Value,
        })
        .ToList();

    dataGridView3.DataSource = Tag;
}

这只返回一个标签列表我该如何更改它,以便它将从我的文本框中获取一个字符串并将一个组列表返回到我的数据网格中?我最好希望它在按钮单击我的数据网格中填充标签和与该标签名关联的组列表。

有点像 SO 如何将标签与问题相关联,如果您单击此问题旁边的任何标签,它将列出与该标签相关的问题,在同样的意义上,我想实现相同的目标,而不是对其组提出问题。

4

1 回答 1

1

看起来你需要

string uriGetGroupsCollection = 
     "http://localhost:8000/Service/GetGroupsCollection/{TagName}";

private void button6_Click(object sender, EventArgs e)
{
    string tagUri = uriGetGroupsCollection.Replace("{TagName}", textbox1.text);
    XDocument xDoc = XDocument.Load(tagUri);
    ...
}
于 2012-04-07T15:01:37.790 回答