Skip to content

Instantly share code, notes, and snippets.

@ngbrown
ngbrown / FormatterExtensions.cs
Last active June 9, 2022 10:04
NancyFX PartialFileResponse
using System;
using System.IO;
using Nancy;
namespace WebService.Extensions
{
public static class FormatterExtensions
{
public static Response AsPartialFile(this IResponseFormatter formatter, string applicationRelativeFilePath, string contentType)
{