RangeRouteConstraint Constructor (Int64, Int64)
Initializes a new instance of the RangeRouteConstraint class.
Namespace: System.Web.Http.Routing.Constraints
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
public RangeRouteConstraint(
long min,
long max
)
public:
RangeRouteConstraint(
long long min,
long long max
)
new :
min:int64 *
max:int64 -> RangeRouteConstraint
Public Sub New (
min As Long,
max As Long
)
Parameters
min
Type: System.Int64The minimum value.
max
Type: System.Int64The maximum value.
See Also
RangeRouteConstraint Class
System.Web.Http.Routing.Constraints Namespace
Return to top