Skip to content

Instantly share code, notes, and snippets.

View hishamco's full-sized avatar
😉
Working on Orchard Core & Orchard Core Contrib

Hisham Bin Ateya hishamco

😉
Working on Orchard Core & Orchard Core Contrib
View GitHub Profile
@hishamco
hishamco / CsvContentResult.cs
Created December 25, 2021 09:58
CSV Content Result for ASP.NET Core
using Microsoft.AspNetCore.Mvc;
public class CsvContentResult : ContentResult
{
private const string _contentType = "text/csv";
public CsvContentResult(string content)
{
ContentType = _contentType;
Content = content;