Top "Webrequest" questions

WebRequest is a abstract class in .NET Framework for making requests to URIs (including HTTP, HTTPS, FTP and FILE protocols).

How to set User Agent with System.Net.WebRequest in c#

Hi I'm trying to set User Agent with WebRequest, but unfortunately I've only found how to do it using HttpWebRequest, …

c# webrequest
C# Getting proxy settings from Internet Explorer

i have a problem in certain company in germany. They use proxy in their network and my program cant communicate …

c# proxy internet-explorer-7 webrequest
c# WebRequest using WebBrowser cookie

I am logging into a site using a WebBrowser, then i want use regex to get some data , but webRequest …

c# browser webrequest
Is WebRequest The Right C# Tool For Interacting With Websites?

I'm writing a small tool in C# which will need to send and receive data to/from a website using …

c# .net webrequest
How do I programmatically send information to a web service in C# with .NET?

I know this sort of counts as reinventing the wheel here, but I need to know to communicate with a …

c# .net web-services webrequest
Downloading pdf file using WebRequests

I'm trying to download a number of pdf files automagically given a list of urls. Here's the code I have: …

c# pdf webrequest binaryreader
Starting async method as Thread or as Task

I'm new to C#s await/async and currently playing around a bit. In my scenario I have a simple …

c# asynchronous async-await webrequest
How can I do digest authentication with HttpWebRequest?

Various articles (1, 2) I discovered make this look easy enough: WebRequest request = HttpWebRequest.Create(url); var credentialCache = new CredentialCache(); credentialCache.Add( …

c# authentication httpwebrequest webrequest digest
PowerShell v3 Invoke-WebRequest: Troubles with forms

Since I upgraded to Windows 8 a lot of my PowerShell scripts relying on launching an invisible IE won’t quite …

forms powershell web webrequest