Exemplo n.º 1
0
        public async Task <CommentCollection> GetPostComments(string subreddit, string postId36)
        {
            var commentCollection = new CommentCollection(this.api, subreddit, postId36);
            await commentCollection.LoadAsync();

            return(commentCollection);
        }
Exemplo n.º 2
0
 public async Task<CommentCollection> GetPostComments(string subreddit, string postId36)
 {
     var commentCollection = new CommentCollection(this.api, subreddit, postId36);
     await commentCollection.LoadAsync();
     return commentCollection;
 }
Exemplo n.º 3
0
 protected override async void OnInitialActivate()
 {
     this.CommentCollection = await this.client.GetPostComments(this.Subreddit, this.PostId36);
 }