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