3 instantiations of MyTryParseRecord
Microsoft.AspNetCore.Http.Extensions.Tests (3)
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (1)
146new object[] { "MyTryParseRecord[]", new[] { "https://example.org" },new[] { new MyTryParseRecord(new Uri("https://example.org")) } },
RequestDelegateGenerator\RequestDelegateCreationTests.TryParse.cs (1)
56new object[] { "MyTryParseRecord", "https://example.org", new MyTryParseRecord(new Uri("https://example.org")) },
RequestDelegateGenerator\SharedTypes.cs (1)
152result = new MyTryParseRecord(uri);
4 references to MyTryParseRecord
Microsoft.AspNetCore.Http.Extensions.Tests (4)
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (1)
150new object[] { "MyTryParseRecord?[]?", new[] { "" }, new MyTryParseRecord[] { null } },
RequestDelegateGenerator\RequestDelegateCreationTests.Forms.cs (2)
904var content = Assert.IsType<MyTryParseRecord>(httpContext.Items["tryParsable"]);
RequestDelegateGenerator\SharedTypes.cs (1)
144public static bool TryParse(string value, out MyTryParseRecord? result)