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

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

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

Documentation can be found following the link below:

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

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