List the content of link with C # on a console.
For example, the following code shows the followers of a user and the number of repositories of a user, but I need to list the contents of the previous address.
public async Task<String> TestGitHub() {
var github = new GitHubClient(new ProductHeaderValue("MyAmazingApp"));
var user = await github.User.Get("half-ogre");
Console.WriteLine(user.Followers +" folks love the half ogre!");
Console.WriteLine("Repositories: \n"+ user.PublicRepos);
return user.Url;
}