Added some missing docs
This commit is contained in:
parent
a6a4b5369a
commit
499fefcc03
|
|
@ -36,6 +36,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IList<IActionConstraintMetadata> ActionConstraints { get; set; }
|
public IList<IActionConstraintMetadata> ActionConstraints { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The set of parameters associated with this action.
|
||||||
|
/// </summary>
|
||||||
public IList<ParameterDescriptor> Parameters { get; set; }
|
public IList<ParameterDescriptor> Parameters { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
@ -43,6 +46,9 @@ namespace Microsoft.AspNetCore.Mvc.Abstractions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IList<ParameterDescriptor> BoundProperties { get; set; }
|
public IList<ParameterDescriptor> BoundProperties { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The set of filters associated with this action.
|
||||||
|
/// </summary>
|
||||||
public IList<FilterDescriptor> FilterDescriptors { get; set; }
|
public IList<FilterDescriptor> FilterDescriptors { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue