1 type derived from ServiceFilterAttribute
Microsoft.AspNetCore.Mvc.Core (1)
ServiceFilterOfTAttribute.cs (1)
12public class ServiceFilterAttribute<TFilter> : ServiceFilterAttribute where TFilter : IFilterMetadata
1 instantiation of ServiceFilterAttribute
Microsoft.AspNetCore.Mvc.Core (1)
Filters\FilterCollection.cs (1)
165var filter = new ServiceFilterAttribute(filterType) { Order = order };
5 references to ServiceFilterAttribute
Microsoft.AspNetCore.Mvc.Core (5)
Filters\FilterCollection.cs (1)
165var filter = new ServiceFilterAttribute(filterType) { Order = order };
ServiceFilterAttribute.cs (1)
27/// Instantiates a new <see cref="ServiceFilterAttribute"/> instance.
ServiceFilterOfTAttribute.cs (1)
15/// Instantiates a new <see cref="ServiceFilterAttribute"/> instance.
TypeFilterAttribute.cs (2)
20/// Similar to the <see cref="ServiceFilterAttribute"/> in that both use constructor injection. Use 21/// <see cref="ServiceFilterAttribute"/> instead if the filter is itself a service.