Added WithPreCompressedFile extension. Bumped package version to 1.3.5

This commit is contained in:
MattMo 2023-03-01 17:14:52 -08:00
parent bd4f5f63b6
commit f4fe34e461
2 changed files with 29 additions and 1 deletions

View File

@ -198,6 +198,34 @@ namespace MontoyaTech.Rest.Net
return response;
}
/// <summary>
/// Sets the response content type to a precompressed file and writes the file contents to the response.
/// </summary>
/// <param name="response"></param>
/// <param name="filePath"></param>
/// <param name="content"></param>
/// <param name="mimeType"></param>
/// <returns></returns>
/// <exception cref="ArgumentException"></exception>
public static HttpListenerResponse WithPreCompressedFile(this HttpListenerResponse response, string filePath, byte[] content, string mimeType = null)
{
if (string.IsNullOrWhiteSpace(filePath))
throw new ArgumentException("filePath must not be null or empty");
if (string.IsNullOrWhiteSpace(mimeType))
mimeType = Path.GetExtension(filePath).GetMimeType();
response.ContentType = mimeType;
response.Headers.Add("Content-Deposition", $@"attachment; filename=""{Path.GetFileName(filePath)}""");
response.Headers.Add("Content-Encoding", "gzip");
response.SendChunked = true;
using (var responseStream = response.OutputStream)
responseStream.Write(content, 0, content.Length);
return response;
}
/// <summary>
/// Sets the response content type to html and writes the given html to it.
/// </summary>

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.3.4</Version>
<Version>1.3.5</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup>