.NET Core从URL下载图像

时间:2019-07-08 08:15:20

标签: c# asp.net-core .net-core asp.net-core-webapi

我正在用.NET Core做一个Web API。注册时,用户将提供图像URL。我想将给定URL中的图像下载到任何文件夹。

这是我的用户模型

public class UserDTO
{
    public string username { get; set; }

    public string password { get; set; }

    public string imgUrl { get; set; }
}

0 个答案:

没有答案