user1855152
user1855152

Reputation: 13

Download an image from SharePoint

I want to download an image from a SharePoint site but our SharePoint site is hosted on Windows Azure so it may need authentication. How can I download the image using C#?

Upvotes: 0

Views: 817

Answers (1)

Mathieu
Mathieu

Reputation: 377

You can download an image by using the WebClient in c#. This webclient has a "DownloadFile" function that accepts a url. The webclient also has a "Credentials" property where you can assign the needed credentials.

Upvotes: 1

Related Questions