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

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

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

Documentation can be found following the link below:

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

public GetTagRelated ( string tag, TagsQuery parameters = null ) : IBridgeResponseCollection
tag string The single tag in {tags}.
parameters TagsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Tag> GetTagRelated(string tag, TagsQuery parameters = null)
        {
            return GetTagsRelated(new[] { tag }, parameters);
        }
StackClient