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

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

Makes a request to API method /comments

Documentation can be found following the link below:

https://api.stackexchange.com/docs/comments

public GetComments ( CommentsQuery parameters = null ) : IBridgeResponseCollection
parameters CommentsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetComments(CommentsQuery parameters = null)
        {
            return GetApiResultCollection<Comment, CommentsQuery>(ApiMethodEnum.Comments, parameters);
        }

Same methods

StackClient::GetComments ( long ids, CommentsQuery parameters = null ) : IBridgeResponseCollection
StackClient