File: RequestDelegateGenerator\SharedTypes.Http.cs
Web Access
Project: src\src\Http\Http.Extensions\test\Microsoft.AspNetCore.Http.Extensions.Tests.csproj (Microsoft.AspNetCore.Http.Extensions.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
 
namespace Http;
 
#nullable  enable
 
public sealed class ExampleService
{
    public string Act(string line) => line;
}