Вызов .NET core REST api из windows forms для отправки данных, включая IFormFile

#c# #asp.net-core

#c# #asp.net-core

Вопрос:

У меня есть .NET core Web Api с этой моделью:

 public class UserForRegisterDto
{
    [Required]
    public string UserName { get; set; }
    [Required]
    public string Name { get; set; }
    [Required]
    public string LastName { get; set; }
    [Required]      
    public string Password { get; set; }
    [Required]
    public string PhoneNumber { get; set; }
    [Required]
    public string MobilePhone { get; set; }

    [Required]
    public IFormFile Photo { get; set; }
}
  

С другой стороны, у меня есть приложение Windows forms, использующее .NET 4, и я пытаюсь отправить данные в api, используя этот класс и фрагмент кода:

 public class UserForRegisterDto
{
    public string UserName { get; set; }
    public string Name { get; set; }
    public string LastName { get; set; }
    public string Password { get; set; }
    public string PhoneNumber { get; set; }
    public string MobilePhone { get; set; }
    public byte[] Photo { get; set; }
}
  

и фрагмент кода для отправки этих данных является:

 List<UserForRegisterDto> registrationList = Mapper.Map<List<UserForRegisterDto>>(usersList);
AuthenticatedHttpClientHandler clientHandler = new AuthenticatedHttpClientHandler(user.Id, Uow, _refreshTokenService);
clientHandler.UseDefaultCredentials = true;
HttpClient client = new HttpClient(clientHandler);
client.BaseAddress = new Uri(ConfigurationManager.AppSettings["appUrl"].ToString());
StringContent content = new StringContent(JsonConvert.SerializeObject(registrationList), Encoding.UTF8, "application/json");


HttpResponseMessage response = await client.PostAsync($"api/users/{user.Id}/users/PostGasStationUsers/{ConfigurationManager.AppSettings["appId"].ToString()}", content);
  

Мне нужно использовать другой тип данных вместо массива байтов, который можно сопоставить с данными IFormFile, и как это сделать.

Ответ №1:

Используется MultipartFormDataContent для передачи двоичных данных

 var content = new MultipartFormDataContent();

for (int i = 0; i < registrationList.Count; i  )
{
    UserForRegisterDto registration = registrationList[i];

    content.Add(new StringContent(registration.LastName), $"model[{i}].LastName");
    content.Add(new StringContent(registration.MobilePhone), $"model[{i}].MobilePhone");
    content.Add(new StringContent(registration.Name), $"model[{i}].Name");
    content.Add(new StringContent(registration.Password), $"model[{i}].Password");
    content.Add(new StringContent(registration.PhoneNumber), $"model[{i}].PhoneNumber");
    content.Add(new StringContent(registration.UserName), $"model[{i}].UserName");
    content.Add(new ByteArrayContent(registration.Photo), $"model[{i}].Photo", "photo.jpeg");
}

HttpResponseMessage response = await client.PostAsync($"api/users/{user.Id}/users/PostGasStationUsers/{ConfigurationManager.AppSettings["appId"].ToString()}", content);
  

Это работает, если имя параметра действия равно model

 [HttpPost]
public IActionResult PostGasStationUsers(List<UserForRegisterDto> model)