BridgeStack.StackClient.GetPostsComments C# (CSharp) Méthode

GetPostsComments() public méthode

Makes a request to API method /posts/{ids}/comments

Documentation can be found following the link below:

https://api.stackexchange.com/docs/comments-on-posts

public GetPostsComments ( long ids, CommentsQuery parameters = null ) : IBridgeResponseCollection
ids long The posts {ids} vector.
parameters CommentsQuery The request parameters.
Résultat IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetPostsComments(long[] ids, CommentsQuery parameters = null)
        {
            return GetApiResultCollection<Comment, CommentsQuery>(ApiMethodEnum.CommentsOnPosts, CreateIdsVector(ids), parameters);
        }
StackClient