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

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

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

Documentation can be found following the link below:

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

public GetTagWiki ( string tag, SimpleQuery parameters = null ) : IBridgeResponseItem
tag string The single tag in {tags}.
parameters SimpleQuery The request parameters.
Результат IBridgeResponseItem
        public override IBridgeResponseItem<TagWiki> GetTagWiki(string tag, SimpleQuery parameters = null)
        {
            return GetTagsWikis(new[] { tag }, parameters).Single();
        }
StackClient