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

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

Makes a request to API method /me/mentioned

Documentation can be found following the link below:

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

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