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