parent
d1bebd3e5b
commit
f90211b0d3
@ -0,0 +1,21 @@
|
|||||||
|
using System.IO;
|
||||||
|
using Nancy;
|
||||||
|
|
||||||
|
namespace Radarr.Http
|
||||||
|
{
|
||||||
|
public class ByteArrayResponse : Response
|
||||||
|
{
|
||||||
|
public ByteArrayResponse(byte[] body, string contentType)
|
||||||
|
{
|
||||||
|
ContentType = contentType;
|
||||||
|
|
||||||
|
Contents = stream =>
|
||||||
|
{
|
||||||
|
using (var writer = new BinaryWriter(stream))
|
||||||
|
{
|
||||||
|
writer.Write(body);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue