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

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

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 GetAnswersComments ( long ids, CommentsQuery parameters = null ) : IBridgeResponseCollection
ids long The answer {ids} vector.
parameters CommentsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetAnswersComments(long[] ids, CommentsQuery parameters = null)
        {
            return GetApiResultCollection<Comment, CommentsQuery>(ApiMethodEnum.CommentsOnAnswers, CreateIdsVector(ids), parameters);
        }
StackClient