7 instantiations of EndpointFilterInvocationContext
Microsoft.AspNetCore.Http.Abstractions (1)
EndpointFilterInvocationContext.cs (1)
65new EndpointFilterInvocationContext<T1, T2, T3, T4>(httpContext, arg1, arg2, arg3, arg4);
Microsoft.AspNetCore.Http.Abstractions.Tests (6)
EndpointFilterInvocationContextOfTTests.cs (6)
23var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 34var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 42var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 49var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 62var context = new EndpointFilterInvocationContext<int?, string, int, bool>(new DefaultHttpContext(), (int?)null, "This is a test", 42, false); 75var context = new EndpointFilterInvocationContext<string?, int?, bool?, Todo?>(new DefaultHttpContext(), null, null, null, null);
7 references to EndpointFilterInvocationContext
Microsoft.AspNetCore.Http.Abstractions.Tests (6)
EndpointFilterInvocationContextOfTTests.cs (6)
23var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 34var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 42var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 49var context = new EndpointFilterInvocationContext<string, int, bool, Todo>(new DefaultHttpContext(), "This is a test", 42, false, new Todo()); 62var context = new EndpointFilterInvocationContext<int?, string, int, bool>(new DefaultHttpContext(), (int?)null, "This is a test", 42, false); 75var context = new EndpointFilterInvocationContext<string?, int?, bool?, Todo?>(new DefaultHttpContext(), null, null, null, null);
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
6134 => typeof(EndpointFilterInvocationContext<,,,>),