Udostępnij za pośrednictwem


LengthRouteConstraint Konstruktory

Definicja

Przeciążenia

LengthRouteConstraint(Int32)

Inicjuje LengthRouteConstraint nowe wystąpienie klasy, które ogranicza parametr trasy jako ciąg danej długości.

LengthRouteConstraint(Int32, Int32)

Inicjuje LengthRouteConstraint nowe wystąpienie klasy, które ogranicza parametr trasy jako ciąg danej długości.

LengthRouteConstraint(Int32)

Źródło:
LengthRouteConstraint.cs
Źródło:
LengthRouteConstraint.cs
Źródło:
LengthRouteConstraint.cs

Inicjuje LengthRouteConstraint nowe wystąpienie klasy, które ogranicza parametr trasy jako ciąg danej długości.

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)

Parametry

length
Int32

Długość parametru trasy.

Dotyczy

LengthRouteConstraint(Int32, Int32)

Źródło:
LengthRouteConstraint.cs
Źródło:
LengthRouteConstraint.cs
Źródło:
LengthRouteConstraint.cs

Inicjuje LengthRouteConstraint nowe wystąpienie klasy, które ogranicza parametr trasy jako ciąg danej długości.

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)

Parametry

minLength
Int32

Minimalna długość dozwolona dla parametru trasy.

maxLength
Int32

Maksymalna dozwolona długość parametru trasy.

Dotyczy