You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/fundamentals/routing.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ monikerRange: '>= aspnetcore-3.1'
6
6
content_well_notification: AI-contribution
7
7
ms.author: tdykstra
8
8
ms.custom: mvc
9
-
ms.date: 09/18/2024
9
+
ms.date: 03/17/2026
10
10
uid: fundamentals/routing
11
11
ai-usage: ai-assisted
12
12
---
@@ -520,9 +520,9 @@ The following table demonstrates the default route constraints and their expecte
520
520
|`range(min,max)`|`{age:range(18,120)}`|`91`| Integer value must be at least 18 but no more than 120 |
521
521
|`alpha`|`{name:alpha}`|`Rick`| String must consist of one or more alphabetical characters, `a`-`z` and case-insensitive |
522
522
|`regex(expression)`|`{ssn:regex(^\\d{{3}}-\\d{{2}}-\\d{{4}}$)}`|`123-45-6789`| String must match the regular expression. See tips about defining a regular expression |
523
-
|`required`|`{name:required}`|`Rick`|Used to enforce that a non-parameter value is present during URL generation|
524
-
|`file`|`{filename:file}`|`myfile.txt`| String can contain path segments, but its last segment must have a dot (`.`) and be followed by one or more non-dot characters |
525
-
|`nonfile`|`{page:nonfile}`|`PageName`| String must not have a dot in its last path segment that is followed by one or more non-dot (`.`) characters|
523
+
|`required`|`{name:required}`|`Rick`|Enforces that an explicit value (not an ambient value) is present during URL generation.|
524
+
|`file`|`{filename:file}`|`myfile.txt`| String can contain path segments, but its last segment must have a dot (`.`) and be followed by one or more non-dot characters |
525
+
|`nonfile`|`{page:nonfile}`|`PageName`| String must not have a dot in its last path segment that is followed by one or more non-dot (`.`) characters |
Copy file name to clipboardExpand all lines: aspnetcore/fundamentals/routing/includes/routing3-7.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -499,7 +499,7 @@ The following table demonstrates example route constraints and their expected be
499
499
|`range(min,max)`|`{age:range(18,120)}`|`91`| Integer value must be at least 18 but no more than 120 |
500
500
|`alpha`|`{name:alpha}`|`Rick`| String must consist of one or more alphabetical characters, `a`-`z` and case-insensitive. |
501
501
|`regex(expression)`|`{ssn:regex(^\\d{{3}}-\\d{{2}}-\\d{{4}}$)}`|`123-45-6789`| String must match the regular expression. See tips about defining a regular expression. |
502
-
|`required`|`{name:required}`|`Rick`|Used to enforce that a non-parameter value is present during URL generation|
502
+
|`required`|`{name:required}`|`Rick`|Enforces that an explicit value (not an ambient value) is present during URL generation.|
0 commit comments