5ce9e51ae7
Microsoft Excel files can be used to import/export devices. Several import bugs were also fixed in the process.
18 lines
465 B
C#
18 lines
465 B
C#
using System.Web.Mvc;
|
|
|
|
namespace Disco.Web.Extensions
|
|
{
|
|
public static class FileExtensions
|
|
{
|
|
|
|
public static FileContentSpanResult File(this IController controller, byte[] fileBuffer, int start, int length, string contentType, string fileDownloadName)
|
|
{
|
|
return new FileContentSpanResult(fileBuffer, start, length, contentType)
|
|
{
|
|
FileDownloadName = fileDownloadName
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|