1 instantiation of TryParsableEmployee
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (1)
DefaultApiDescriptionProviderTest.cs (1)
2673
result =
new
() { Name = s };
6 references to TryParsableEmployee
Microsoft.AspNetCore.Mvc.ApiExplorer.Test (6)
DefaultApiDescriptionProviderTest.cs (6)
2502
private void AcceptsTryParsableEmployee([FromQuery]
TryParsableEmployee
employee)
2512
private void AcceptsNullableTryParsableEmployee([FromQuery]
TryParsableEmployee
? employee)
2657
private struct TryParsableEmployee : IParsable<
TryParsableEmployee
>
2661
public static
TryParsableEmployee
Parse(string s, IFormatProvider provider)
2663
if (TryParse(s, provider, out
var
result))
2671
public static bool TryParse([NotNullWhen(true)] string s, IFormatProvider provider, [MaybeNullWhen(false)] out
TryParsableEmployee
result)