Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ public FeatureGateAttribute(RequirementType requirementType, params object[] fea
public IEnumerable<string> Features { get; }

/// <summary>
/// Controls whether any or all features in <see cref="Features"/> should be enabled to pass.
/// Controls whether any or all features in <see cref="FeatureGateAttribute.Features"/> should be enabled to pass.
/// </summary>
public RequirementType RequirementType { get; }

/// <summary>
/// Performs controller action pre-procesing to ensure that at least one of the specified features are enabled.
/// Performs controller action pre-procesing to ensure that any or all of the specified features are enabled.
/// </summary>
/// <param name="context">The context of the MVC action.</param>
/// <param name="next">The action delegate.</param>
Expand Down