Share via


CompoundRouteConstraint.Constraints Property

 

Gets the child constraints that must match for this constraint to match.

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

Syntax

public IEnumerable<IHttpRouteConstraint> Constraints {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    private set;
}
public:
property IEnumerable<IHttpRouteConstraint^>^ Constraints {
    [CompilerGeneratedAttribute]
    IEnumerable<IHttpRouteConstraint^>^ get();
    [CompilerGeneratedAttribute]
    private: void set(IEnumerable<IHttpRouteConstraint^>^ value);
}
member Constraints : IEnumerable<IHttpRouteConstraint> with get, private set
Public Property Constraints As IEnumerable(Of IHttpRouteConstraint)
    Get
    Private Set
End Property

Property Value

Type: System.Collections.Generic.IEnumerable<IHttpRouteConstraint>

The child constraints that must match for this constraint to match.

See Also

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

Return to top