PowerShell 3.0 offers a very decent new cmdlet called Invoke-WebRequest. Is there a way to make use of its functionality using C# respectively .NET without invoking the cmdlet directly? Is it even based on .NET?
Regards, Kevin
You can use System.Net.HttpWebRequest to do the same thing. you've got a codeproject article about that.