本文整理汇总了C#中Route.TryMatch方法的典型用法代码示例。如果您正苦于以下问题:C# Route.TryMatch方法的具体用法?C# Route.TryMatch怎么用?C# Route.TryMatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Route
的用法示例。
在下文中一共展示了Route.TryMatch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestRouteMatching
public void TestRouteMatching()
{
IReadOnlyDictionary<string, string> pathVariables;
var r0 = new Route("/");
Assert.True(r0.TryMatch(new Uri("http://localhost/"), out pathVariables));
Assert.True(r0.TryMatch(new Uri("http://localhost"), out pathVariables));
Assert.True(r0.TryMatch(new Uri("http://localhost?k=v"), out pathVariables));
var r1 = new Route("/*");
Assert.False(r1.TryMatch(new Uri("http://localhost/"), out pathVariables));
Assert.True(r1.TryMatch(new Uri("http://localhost/whatever"), out pathVariables));
var r2 = new Route("/files/*");
Assert.False(r2.TryMatch(new Uri("http://localhost/files"), out pathVariables));
Assert.True(r2.TryMatch(new Uri("http://localhost/files/anything.html"), out pathVariables));
var r3 = new Route("/accounts");
Assert.True(r3.TryMatch(new Uri("http://localhost/accounts"), out pathVariables));
Assert.AreEqual(0, pathVariables.Count);
Assert.False(r3.TryMatch(new Uri("http://localhost/accounts/"), out pathVariables));
Assert.IsNull(pathVariables);
var r4 = new Route("/accounts/{id}");
Assert.True(r4.TryMatch(new Uri("http://localhost/accounts/1234"), out pathVariables));
Assert.False(r4.TryMatch(new Uri("http://localhost/accounts/1234/data"), out pathVariables));
var r5 = new Route("/accounts/{id}/data");
Assert.True(r5.TryMatch(new Uri("http://localhost/accounts/1234/data"), out pathVariables));
Assert.False(r5.TryMatch(new Uri("http://localhost/accounts/1234/data/"), out pathVariables));
Assert.True(r5.TryMatch(new Uri("http://localhost/accounts/1234/data?keys=name"), out pathVariables));
Assert.AreEqual("1234", pathVariables["id"]);
Assert.False(r5.TryMatch(new Uri("http://localhost/accounts/1234"), out pathVariables));
var r6 = new Route("/images/{category}/c/{name}");
Assert.True(r6.TryMatch(new Uri("http://localhost/images/animals/c/cat.png"), out pathVariables));
Assert.AreEqual(2, pathVariables.Count);
Assert.AreEqual("animals", pathVariables["category"]);
Assert.AreEqual("cat.png", pathVariables["name"]);
Assert.False(r6.TryMatch(new Uri("http://localhost/images/animals/c"), out pathVariables));
var r7 = new Route("/files/*");
Assert.True(r7.TryMatch(new Uri("http://localhost/files/test/test.png"), out pathVariables));
Assert.True(r7.TryMatch(new Uri("http://localhost/files/test.png"), out pathVariables));
Assert.False(r7.TryMatch(new Uri("http://localhost/files"), out pathVariables));
}