LengthRouteConstraint 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
LengthRouteConstraint(Int32) |
경로 매개 변수를 지정된 길이의 문자열로 제한하는 클래스의 LengthRouteConstraint 새 instance 초기화합니다. |
LengthRouteConstraint(Int32, Int32) |
경로 매개 변수를 지정된 길이의 문자열로 제한하는 클래스의 LengthRouteConstraint 새 instance 초기화합니다. |
LengthRouteConstraint(Int32)
- Source:
- LengthRouteConstraint.cs
- Source:
- LengthRouteConstraint.cs
- Source:
- LengthRouteConstraint.cs
경로 매개 변수를 지정된 길이의 문자열로 제한하는 클래스의 LengthRouteConstraint 새 instance 초기화합니다.
public:
LengthRouteConstraint(int length);
public LengthRouteConstraint (int length);
new Microsoft.AspNetCore.Routing.Constraints.LengthRouteConstraint : int -> Microsoft.AspNetCore.Routing.Constraints.LengthRouteConstraint
Public Sub New (length As Integer)
매개 변수
- length
- Int32
경로 매개 변수의 길이입니다.
적용 대상
LengthRouteConstraint(Int32, Int32)
- Source:
- LengthRouteConstraint.cs
- Source:
- LengthRouteConstraint.cs
- Source:
- LengthRouteConstraint.cs
경로 매개 변수를 지정된 길이의 문자열로 제한하는 클래스의 LengthRouteConstraint 새 instance 초기화합니다.
public:
LengthRouteConstraint(int minLength, int maxLength);
public LengthRouteConstraint (int minLength, int maxLength);
new Microsoft.AspNetCore.Routing.Constraints.LengthRouteConstraint : int * int -> Microsoft.AspNetCore.Routing.Constraints.LengthRouteConstraint
Public Sub New (minLength As Integer, maxLength As Integer)
매개 변수
- minLength
- Int32
경로 매개 변수에 허용되는 최소 길이입니다.
- maxLength
- Int32
경로 매개 변수에 허용되는 최대 길이입니다.