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

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

Makes a request to API method /users/{ids}/questions/no-answers

Documentation can be found following the link below:

https://api.stackexchange.com/docs/no-answer-questions-on-users

public GetUserQuestionsWithNoAnswers ( long id, PostsQuery parameters = null ) : IBridgeResponseCollection
id long The single user in {ids}.
parameters PostsQuery The request parameters.
Результат IBridgeResponseCollection
        public override IBridgeResponseCollection<Question> GetUserQuestionsWithNoAnswers(long id, PostsQuery parameters = null)
        {
            return GetUsersQuestionsWithNoAnswers(new[] { id }, parameters);
        }
StackClient