Added some missing docs

This commit is contained in:
Ajay Bhargav Baaskaran 2016-08-26 16:35:44 -07:00
parent a6a4b5369a
commit 499fefcc03
1 changed files with 6 additions and 0 deletions

View File

@ -36,6 +36,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions
/// </summary>
public IList<IActionConstraintMetadata> ActionConstraints { get; set; }
/// <summary>
/// The set of parameters associated with this action.
/// </summary>
public IList<ParameterDescriptor> Parameters { get; set; }
/// <summary>
@ -43,6 +46,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions
/// </summary>
public IList<ParameterDescriptor> BoundProperties { get; set; }
/// <summary>
/// The set of filters associated with this action.
/// </summary>
public IList<FilterDescriptor> FilterDescriptors { get; set; }
/// <summary>