I need Windows Phone application to upload files to a web server using the HttpWebRequest class instance.
A server requires authentication credentials for the request.
All .net examples of uploading with a credentials rely on CredentialCache class object, that is used to store the credentials for the time of a program execution.
In Windows Phone, it seems like the CredentialCache class isn’t available. What is the substitute in this case?
Can’t you use directly
NetworkCredential? It is supported in in Windows Phone 7.