Jamey McElveen
Jamey McElveen

Reputation: 18305

Is there a WebClient object that can be used in MonoTouch?

Is there a WebClient object that can be used in MonoTouch?

Upvotes: 0

Views: 1293

Answers (2)

Elias Manesiotis
Elias Manesiotis

Reputation: 304

You may use the "standard" WebClient. See an example here. Someone reported that https is problematic in monotouch so you may find a workaround here

EDIT https (SSL/TLS) support has been available in MonoTouch for a few years now

Upvotes: 2

miguel.de.icaza
miguel.de.icaza

Reputation: 32694

A full sample that shows http, https using the .NET APIs as well as one using the Cocoa API is available in:

The short sort story is: just use System.Net.WebRequest as you would with regular .NET

Upvotes: 2

Related Questions