BridgeStack.StackClient.GetPostComments C# (CSharp) Метод

GetPostComments() публичный Метод

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 GetPostComments ( long id, CommentsQuery parameters = null ) : IBridgeResponseCollection
id long The single post in {ids}.
parameters CommentsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetPostComments(long id, CommentsQuery parameters = null)
        {
            return GetPostsComments(new[] { id }, parameters);
        }
StackClient