Questions tagged «namevaluecollection»

19
将URI字符串解析为Name-Value集合
我有这样的URI: https://google.com.ua/oauth/authorize?client_id=SS&response_type=code&scope=N_FULL&access_type=offline&redirect_uri=http://localhost/Callback 我需要一个具有解析元素的集合: NAME VALUE ------------------------ client_id SS response_type code scope N_FULL access_type offline redirect_uri http://localhost/Callback 确切地说,我需要C#/。NET HttpUtility.ParseQueryString方法的Java等效项。 请给我一个建议。 谢谢。

12
检查NameValueCollection中是否存在键
有没有一种快速简单的方法来检查键是否存在于NameValueCollection中而无需遍历它? 寻找类似Dictionary.ContainsKey()之类的东西。 当然,有很多方法可以解决此问题。只是想知道是否有人可以帮助我挠痒。

7
C#遍历NameValueCollection
我有一个NameValueCollection,并且想要遍历这些值。目前,我正在这样做,但是似乎应该有一种更整洁的方法: NameValueCollection nvc = new NameValueCollection(); nvc.Add("Test", "Val1"); nvc.Add("Test2", "Val1"); nvc.Add("Test2", "Val1"); nvc.Add("Test2", "Val2"); nvc.Add("Test3", "Val1"); nvc.Add("Test4", "Val4"); foreach (string s in nvc) foreach (string v in nvc.GetValues(s)) Console.WriteLine("{0} {1}", s, v); Console.ReadLine(); 在那儿?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.