4 references to StructResult
Microsoft.AspNetCore.Http.Extensions.Tests (4)
RequestDelegateFactoryTests.cs (4)
1467StructResult TestStructAction() => new StructResult(resultString); 1468Task<StructResult> TaskTestStructAction() => Task.FromResult(new StructResult(resultString)); 1469ValueTask<StructResult> ValueTaskTestStructAction() => ValueTask.FromResult(new StructResult(resultString)); 1470FSharp.Control.FSharpAsync<StructResult> FSharpAsyncTestStructAction() => FSharp.Core.ExtraTopLevelOperators.DefaultAsyncBuilder.Return(new StructResult(resultString));