本文整理汇总了C#中HttpRouteCollection.CreateRoute方法的典型用法代码示例。如果您正苦于以下问题:C# HttpRouteCollection.CreateRoute方法的具体用法?C# HttpRouteCollection.CreateRoute怎么用?C# HttpRouteCollection.CreateRoute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpRouteCollection
的用法示例。
在下文中一共展示了HttpRouteCollection.CreateRoute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TryAddRoute
public bool TryAddRoute(string routeName, string routeTemplate, IEnumerable<HttpMethod> methods, HttpRouteCollection routes, out IHttpRoute route)
{
route = null;
try
{
var routeBuilder = CreateRouteBuilder(routeTemplate);
var constraints = routeBuilder.Constraints;
if (methods != null)
{
// if the methods collection is not null, apply the constraint
// if the methods collection is empty, we'll create a constraint
// that disallows ALL methods
constraints.Add("httpMethod", new HttpMethodConstraint(methods.ToArray()));
}
route = routes.CreateRoute(routeBuilder.Template, routeBuilder.Defaults, constraints);
routes.Add(routeName, route);
}
catch (Exception ex) when (!ex.IsFatal())
{
// catch any route parsing errors
return false;
}
return true;
}
示例2: CreateRoute_ValidatesConstraintType_InvalidType
public void CreateRoute_ValidatesConstraintType_InvalidType()
{
// Arrange
var routes = new HttpRouteCollection();
var constraint = new Uri("http://localhost/");
var constraints = new HttpRouteValueDictionary();
constraints.Add("custom", constraint);
string expectedMessage =
"The constraint entry 'custom' on the route with route template '{controller}/{id}' " +
"must have a string value or be of a type which implements 'System.Web.Http.Routing.IHttpRouteConstraint'.";
// Act & Assert
Assert.Throws<InvalidOperationException>(() => routes.CreateRoute("{controller}/{id}", null, constraints), expectedMessage);
}