You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Adds an MVC filter that will only activate during a request if the specified features are enabled based on the provided requirement type and negation flag.
64
+
/// </summary>
65
+
/// <typeparam name="TFilterType">The MVC filter to add and use if the features condition is satisfied.</typeparam>
66
+
/// <param name="filters">The filter collection to add to.</param>
67
+
/// <param name="requirementType">Specifies whether all or any of the provided features should be enabled.</param>
68
+
/// <param name="negate">Whether to negate the evaluation result for the provided features set.</param>
69
+
/// <param name="features">The features that control whether the MVC filter executes.</param>
70
+
/// <returns>The reference to the added filter metadata.</returns>
0 commit comments