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

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

Makes a request to API method /tags/{tags}/synonyms

Documentation can be found following the link below:

https://api.stackexchange.com/docs/synonyms-by-tags

public GetTagsSynonyms ( string tags, TagSynonymsQuery parameters = null ) : IBridgeResponseCollection
tags string The {tags} vector.
parameters TagSynonymsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<TagSynonym> GetTagsSynonyms(string[] tags, TagSynonymsQuery parameters = null)
        {
            return GetApiResultCollection<TagSynonym, TagSynonymsQuery>(ApiMethodEnum.SynonymsByTags, CreateTagsVector(tags), parameters);
        }
StackClient