Bungie.ForumService.GetPostAndParentAwaitingApproval C# (CSharp) Метод

GetPostAndParentAwaitingApproval() приватный Метод

private GetPostAndParentAwaitingApproval ( int childPostId, bool showBanned = null ) : Task
childPostId int
showBanned bool
Результат Task
        public Task<object> GetPostAndParentAwaitingApproval(int childPostId, bool? showBanned = null)
        {
            var model = new
            {
                childPostId,
                showBanned
            };

            return Request<object>(model);
        }