Added mimeType option to the WithStream extension. Bumped package version to 1.8.7

This commit is contained in:
MattMo 2024-08-29 10:18:36 -07:00
parent bc82aeb8c2
commit 2c2b498223
2 changed files with 6 additions and 3 deletions

View File

@ -379,14 +379,17 @@ namespace MontoyaTech.Rest.Net
/// </summary> /// </summary>
/// <param name="response"></param> /// <param name="response"></param>
/// <param name="stream"></param> /// <param name="stream"></param>
/// <param name="mimeType">If set, sets the content type to this value. If null, and no content type is set, sets it to octet-stream.</param>
/// <returns>This response.</returns> /// <returns>This response.</returns>
/// <exception cref="ArgumentNullException"></exception> /// <exception cref="ArgumentNullException"></exception>
public static HttpListenerResponse WithStream(this HttpListenerResponse response, Stream stream) public static HttpListenerResponse WithStream(this HttpListenerResponse response, Stream stream, string mimeType = null)
{ {
if (stream == null) if (stream == null)
throw new ArgumentNullException($"{nameof(stream)} cannot be null."); throw new ArgumentNullException($"{nameof(stream)} cannot be null.");
if (string.IsNullOrWhiteSpace(response.ContentType)) if (!string.IsNullOrWhiteSpace(mimeType))
response.ContentType = mimeType;
else if (string.IsNullOrWhiteSpace(response.ContentType))
response.ContentType = "application/octet-stream"; response.ContentType = "application/octet-stream";
try try

View File

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