Share via


MinLengthRouteConstraint.MinLength Property

 

Gets the minimum length of the route parameter.

Namespace:   System.Web.Http.Routing.Constraints
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public int MinLength {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property int MinLength {
    [CompilerGeneratedAttribute]
    int get();
    [CompilerGeneratedAttribute]
    private: void set(int value);
}
member MinLength : int with get, private set
Public Property MinLength As Integer
    Get
    Private Set
End Property

Property Value

Type: System.Int32

The minimum length of the route parameter.

See Also

MinLengthRouteConstraint Class
System.Web.Http.Routing.Constraints Namespace

Return to top