1 instantiation of MyBindAsyncRecord
Microsoft.AspNetCore.Http.Extensions.Tests (1)
RequestDelegateGenerator\SharedTypes.cs (1)
231
return new(result:
new
(uri));
9 references to MyBindAsyncRecord
Microsoft.AspNetCore.Http.Extensions.Tests (9)
RequestDelegateGenerator\RequestDelegateCreationTests.AsParameters.cs (2)
345
var
anotherValue = Assert.IsType<
MyBindAsyncRecord
>(httpContext.Items["anotherValue"]);
RequestDelegateGenerator\RequestDelegateCreationTests.BindAsync.cs (2)
249
var
arg = httpContext.Items["myBindAsyncParam"] as
MyBindAsyncRecord
;
RequestDelegateGenerator\SharedTypes.cs (5)
215
public static ValueTask<
MyBindAsyncRecord
?> BindAsync(HttpContext context, ParameterInfo parameter)
217
if (parameter.ParameterType != typeof(
MyBindAsyncRecord
))
236
public static bool TryParse(string? value, out
MyBindAsyncRecord
? result) =>
370
public static ValueTask<
MyBindAsyncRecord
?> BindAsync(HttpContext context, ParameterInfo parameter) =>
844
MyBindAsyncRecord
MyBindAsyncParam);