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

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

Makes a request to API method /me/top-answer-tags

Documentation can be found following the link below:

https://api.stackexchange.com/docs/me-top-answer-tags

public GetMyTopAnswerTags ( SimpleQuery parameters = null ) : IBridgeResponseCollection
parameters SimpleQuery The request parameters.
Результат IBridgeResponseCollection
        public IBridgeResponseCollection<TagTop> GetMyTopAnswerTags(SimpleQuery parameters = null)
        {
            return GetApiResultCollection<TagTop, SimpleQuery>(ApiMethodEnum.MyTopAnswerTags, parameters);
        }