RazorViewEngine.GetNormalizedRouteValue(ActionContext, String) 方法

定义

获取指定路由 的规范化路由 key值。

public:
 static System::String ^ GetNormalizedRouteValue(Microsoft::AspNetCore::Mvc::ActionContext ^ context, System::String ^ key);
public static string GetNormalizedRouteValue (Microsoft.AspNetCore.Mvc.ActionContext context, string key);
public static string? GetNormalizedRouteValue (Microsoft.AspNetCore.Mvc.ActionContext context, string key);
static member GetNormalizedRouteValue : Microsoft.AspNetCore.Mvc.ActionContext * string -> string
Public Shared Function GetNormalizedRouteValue (context As ActionContext, key As String) As String

参数

key
String

要查找的路由键。

返回

与 key 对应的值。

注解

中的 RouteData 路由值的大小写由客户端确定。 这使得在区分大小写的文件系统中为视图位置构造路径不可靠。 RouteValues使用 获取路由值会生成一致的大小写结果。

适用于