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

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

Makes a request to API method /questions/unanswered

Documentation can be found following the link below:

https://api.stackexchange.com/docs/unanswered-questions

public GetQuestionsConsideredUnanswered ( PostsQuery parameters = null ) : IBridgeResponseCollection
parameters PostsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Question> GetQuestionsConsideredUnanswered(PostsQuery parameters = null)
        {
            return GetApiResultCollection<Question, PostsQuery>(ApiMethodEnum.UnansweredQuestions, parameters);
        }
StackClient