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

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

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

Documentation can be found following the link below:

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

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