LengthRouteConstraint.MinLength Property

 

Gets the minimum length of the route parameter, if one is set.

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

Syntax

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

Property Value

Type: System.Nullable<Int32>

See Also

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

Return to top