v7.0.1 Release
❇️ Help Keep FastEndpoints Free & Open-Source ❇️
Due to the current unfortunate state of FOSS, please consider becoming a sponsor and help us beat the odds to keep the project alive and free for everyone.
New 🎉
Relocate response sending methods ⚠️
Response sending methods such as SendOkAsync() have been ripped out of the endpoint base class for a better intellisense experience and extensibility.
Going forward, the response sending methods are accessed via the Send property of the endpoint as follows:
public override async Task HandleAsync(CancellationToken c)
{
await Send.OkAsync("hello world!");
}