Bungie.ForumService.GetPostAndParent C# (CSharp) Method

GetPostAndParent() private method

private GetPostAndParent ( int childPostId, bool showBanned = null ) : Task
childPostId int
showBanned bool
return Task
        public Task<object> GetPostAndParent(int childPostId, bool? showBanned = null)
        {
            var model = new
            {
                childPostId,
                showBanned
            };

            return Request<object>(model);
        }