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

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

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

Documentation can be found following the link below:

https://api.stackexchange.com/docs/comments-by-users-to-user

public GetUserCommentsInReplyTo ( long id, long toId, CommentsQuery parameters = null ) : IBridgeResponseCollection
id long The single user in {ids}.
toId long The user who's mentioned (being replied to). {toid} parameter.
parameters CommentsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Comment> GetUserCommentsInReplyTo(long id, long toId, CommentsQuery parameters = null)
        {
            return GetUsersCommentsInReplyTo(new[] { id }, toId, parameters);
        }
StackClient