由于HttpUtility在WinRT中不可用,我想知道是否有一种直接解析HTTP查询字符串的方法?

在WinRT中,实际上有一些等效于HttpUtility.ParseQueryString吗?

最佳答案

可以使用 HttpUtility.ParseQueryString 代替WwwFormUrlDecoder

这是我抓取here的示例

using System;
using Microsoft.VisualStudio.TestPlatform.UnitTestFramework;
using Windows.Foundation;

[TestClass]
public class Tests
{
    [TestMethod]
    public void TestWwwFormUrlDecoder()
    {
        Uri uri = new Uri("http://example.com/?a=foo&b=bar&c=baz");
        WwwFormUrlDecoder decoder = new WwwFormUrlDecoder(uri.Query);

        // named parameters
        Assert.AreEqual("foo", decoder.GetFirstValueByName("a"));

        // named parameter that doesn't exist
        Assert.ThrowsException<ArgumentException>(() => {
            decoder.GetFirstValueByName("not_present");
        });

        // number of parameters
        Assert.AreEqual(3, decoder.Count);

        // ordered parameters
        Assert.AreEqual("b", decoder[1].Name);
        Assert.AreEqual("bar", decoder[1].Value);

        // ordered parameter that doesn't exist
        Assert.ThrowsException<ArgumentException>(() => {
            IWwwFormUrlDecoderEntry notPresent = decoder[3];
        });
    }
}

关于http - WinRT中的HttpUtility.ParseQueryString方法在哪里?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12759686/

10-09 23:16