OptionalRouteConstraint.InnerConstraint Property
Gets the inner constraint to match if the parameter is not an optional parameter without a value.
Namespace: System.Web.Http.Routing.Constraints
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
public IHttpRouteConstraint InnerConstraint {
[CompilerGeneratedAttribute]
get;
[CompilerGeneratedAttribute]
private set;
}
public:
property IHttpRouteConstraint^ InnerConstraint {
[CompilerGeneratedAttribute]
IHttpRouteConstraint^ get();
[CompilerGeneratedAttribute]
private: void set(IHttpRouteConstraint^ value);
}
member InnerConstraint : IHttpRouteConstraint with get, private set
Public Property InnerConstraint As IHttpRouteConstraint
Get
Private Set
End Property
Property Value
Type: System.Web.Http.Routing.IHttpRouteConstraint
The inner constraint to match if the parameter is not an optional parameter without a value.
See Also
OptionalRouteConstraint Class
System.Web.Http.Routing.Constraints Namespace
Return to top