views:

92

answers:

0

I am building a simple feed reader application that needs to access an ATOM feed that requires authentication. I was going down the route of using the WebClient class and found a Credential property that exists but is not implemented!

webclient.Credentials = new NetworkCredential("username", "password");

Question: What work around are people using for accessing feeds that require basic authentication from a Non-Microsoft site?