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

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

Makes a request to API method /me/tags

Documentation can be found following the link below:

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

public GetMyActiveTags ( TagsQuery parameters = null ) : IBridgeResponseCollection
parameters TagsQuery The request parameters.
Результат IBridgeResponseCollection
        public IBridgeResponseCollection<Tag> GetMyActiveTags(TagsQuery parameters = null)
        {
            return GetApiResultCollection<Tag, TagsQuery>(ApiMethodEnum.MyTags, parameters);
        }