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

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

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

Documentation can be found following the link below:

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

public GetQuestionComments ( long id, CommentsQuery parameters = null ) : IBridgeResponseCollection
id long The single question in {ids}.
parameters CommentsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetQuestionComments(long id, CommentsQuery parameters = null)
        {
            return GetQuestionsComments(new[] { id }, parameters);
        }
StackClient