BridgeStack.AuthorizedStackClient.GetMyComments C# (CSharp) Метод

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

Makes a request to API method /me/comments

Documentation can be found following the link below:

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

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