RoutePrecedence.ComputeOutbound(RouteTemplate) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算生成 URL 的优先级。
public:
static System::Decimal ComputeOutbound(Microsoft::AspNetCore::Routing::Template::RouteTemplate ^ template);
public static decimal ComputeOutbound (Microsoft.AspNetCore.Routing.Template.RouteTemplate template);
static member ComputeOutbound : Microsoft.AspNetCore.Routing.Template.RouteTemplate -> decimal
Public Shared Function ComputeOutbound (template As RouteTemplate) As Decimal
参数
- template
- RouteTemplate
要 RouteTemplate 计算其优先级的 。
返回
一个 Decimal ,表示路由的优先级。
示例
例如:/api/template == 5.5 /api/template/{id} == 5.53 /api/{id:int} == 5.4 /api/template/{id:int} == 5.54