Код: Выделить всё
var optionsBuilder = new RedmineManagerOptionsBuilder();
optionsBuilder.WithHost(RedmineHost);
optionsBuilder.WithApiKeyAuthentication(apiKey);
var rm = new RedmineManager(optionsBuilder);
var attchmt = await rm.GetAsync(id);
var fileBytes = await rm.DownloadFileAsync(attchmt.ContentUrl);
System.IO.File.WriteAllBytes(path, fileBytes);
Как можно скачать файлы по такой ссылке (документы)?
Заранее спасибо,
Подробнее здесь: https://stackoverflow.com/questions/790 ... mmatically
Мобильная версия