У моєму класі ApiController я маю наступний спосіб завантажити файл, створений сервером.
public HttpResponseMessage Get(int id)
{
try
{
string dir = HttpContext.Current.Server.MapPath("~"); //location of the template file
Stream file = new MemoryStream();
Stream result = _service.GetMyForm(id, dir, file);
if (result == null)
{
return Request.CreateResponse(HttpStatusCode.NotFound);
}
result.Position = 0;
HttpResponseMessage response = new HttpResponseMessage();
response.StatusCode = HttpStatusCode.OK;
response.Content = new StreamContent(result);
return response;
}
catch (IOException)
{
return Request.CreateResponse(HttpStatusCode.InternalServerError);
}
}
Все працює ідеально, за винятком того, що ім'я файлу для завантаження за замовчуванням - це його ідентифікатор, тому користувачеві, можливо, доведеться кожного разу вводити своє власне ім’я файлу при збереженні як діалог. Чи є спосіб встановити ім'я файлу за замовчуванням у наведеному вище коді?