diff --git a/src/Microsoft.AspNetCore.Mvc.Abstractions/Abstractions/ActionDescriptor.cs b/src/Microsoft.AspNetCore.Mvc.Abstractions/Abstractions/ActionDescriptor.cs index e54f05499c..a1ced7244b 100644 --- a/src/Microsoft.AspNetCore.Mvc.Abstractions/Abstractions/ActionDescriptor.cs +++ b/src/Microsoft.AspNetCore.Mvc.Abstractions/Abstractions/ActionDescriptor.cs @@ -36,6 +36,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions /// public IList ActionConstraints { get; set; } + /// + /// The set of parameters associated with this action. + /// public IList Parameters { get; set; } /// @@ -43,6 +46,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions /// public IList BoundProperties { get; set; } + /// + /// The set of filters associated with this action. + /// public IList FilterDescriptors { get; set; } ///