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