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) => 1628void requiredReferenceType(HttpContext context, MyBindAsyncRecord myBindAsyncRecord) 1632void defaultReferenceType(HttpContext context, MyBindAsyncRecord? myBindAsyncRecord = null) 1636void nullableReferenceType(HttpContext context, MyBindAsyncRecord? myBindAsyncRecord) 1664new object?[] { (Action<HttpContext, MyBindAsyncRecord>)requiredReferenceType, false, true, false }, 1665new object?[] { (Action<HttpContext, MyBindAsyncRecord>)requiredReferenceType, true, false, false, }, 1668new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)defaultReferenceType, false, false, false, }, 1669new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)defaultReferenceType, true, false, false }, 1671new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)nullableReferenceType, false, false, false }, 1672new object?[] { (Action<HttpContext, MyBindAsyncRecord?>)nullableReferenceType, true, false, false },