Bungie.ForumService.GetPostAndParentAwaitingApproval C# (CSharp) Méthode

GetPostAndParentAwaitingApproval() private méthode

private GetPostAndParentAwaitingApproval ( int childPostId, bool showBanned = null ) : Task
childPostId int
showBanned bool
Résultat Task
        public Task<object> GetPostAndParentAwaitingApproval(int childPostId, bool? showBanned = null)
        {
            var model = new
            {
                childPostId,
                showBanned
            };

            return Request<object>(model);
        }