我有一个 C# Windows 窗体应用程序,用于连接到服务器以发出 Web 请求。我需要做的是允许用户通过首选项设置某些属性并将这些属性动态添加到 WebRequest。
就像我有一个带有条目的配置文件一样 -->
<Properties>
<Property name="User-Agent" value="Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" />
<Property name="KeepAlive" value="true" />
</Properties>
现在我想将值绑定到 WebRequest 属性。
Uri serverURL = new Uri("http://MyServer:8080/MyPage.jsp");
HttpWebRequest wreq = WebRequest.Create(serverURL) as HttpWebRequest;
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(<Path of Config>);
XDocument xDoc = XDocument.Parse(xmldoc.InnerXml);
Dictionary<string, string> propdict = new Dictionary<string, string>();
foreach (var section in xDoc.Root.Elements("Property"))
{
propdict.Add(section.Attribute("name").Value, section.Attribute("value").Value);
}
string key = string.Empty, value = string.Empty;
foreach (var item in propdict)
{
//... add the properties to wreq
}
有人可以让我知道如何实现吗?
谢谢
苏尼尔·詹贝卡