1 instantiation of MyBindAsyncRecord
Microsoft.AspNetCore.Http.Extensions.Tests (1)
RequestDelegateFactoryTests.cs (1)
425return new(result: new(uri));
12 references to MyBindAsyncRecord
Microsoft.AspNetCore.Http.Extensions.Tests (12)
RequestDelegateFactoryTests.cs (12)
415public static ValueTask<MyBindAsyncRecord?> BindAsync(HttpContext context, ParameterInfo parameter) 417Assert.Equal(typeof(MyBindAsyncRecord), parameter.ParameterType); 430public static bool TryParse(string? value, out MyBindAsyncRecord? result) => 1600void requiredReferenceType(HttpContext context, MyBindAsyncRecord myBindAsyncRecord) 1604void defaultReferenceType(HttpContext context, MyBindAsyncRecord? myBindAsyncRecord = null) 1608void nullableReferenceType(HttpContext context, MyBindAsyncRecord? myBindAsyncRecord) 1636new object?[] { (Action<HttpContext, MyBindAsyncRecord>)requiredReferenceType, false, true, false }, 1637new object?[] { (Action<HttpContext, MyBindAsyncRecord>)requiredReferenceType, true, false, false, }, 1640new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)defaultReferenceType, false, false, false, }, 1641new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)defaultReferenceType, true, false, false }, 1643new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)nullableReferenceType, false, false, false }, 1644new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)nullableReferenceType, true, false, false },