我想在www.example.com核心Web API中返回一个带有image属性的类asp.net,并且我正在使用swager来测试操作。我正在使用的类:
public class UserIndexDTO
{
public byte[] ProfileImage { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string UserName { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
}
1条答案
按热度按时间j0pj023g1#
我建议你可以把图像字节转换成base64字符串,然后你可以把base64字符串作为图像体返回给客户端。
更多详细信息,请参考以下示例:
结果: