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

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

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

Documentation can be found following the link below:

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

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