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

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

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

Documentation can be found following the link below:

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

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