Retrieves a list containing the posts that the authenticated user would see on the Reddit front page.
In the NuGet Package Manager console:
Install-Package Reddit
using Reddit;
...
var reddit = new RedditClient("YourRedditAppID", "YourBotUserRefreshToken");
var frontPagePosts = reddit.FrontPage;
//var frontPagePosts = reddit.Subreddit().Posts.Best; // Use this instead if you're using any version of Reddit.NET prior to 1.5.