Ejemplo n.º 1
0
        private void TestQuestionMethod(StackyClient client)
        {
            using (var context = new AsynchronusTestContext(this))
            {
                IEnumerable <Question> received  = null;
                ApiException           exception = null;

                bool completed = false;
                EnqueueCallback(() =>
                {
                    client.GetQuestions(results =>
                    {
                        received  = results;
                        completed = true;
                    },
                                        error =>
                    {
                        exception = error;
                        completed = true;
                    });
                });
                EnqueueConditional(() => completed);
                EnqueueCallback(() => Assert.IsNull(exception));
                EnqueueCallback(() => Assert.IsNotNull(received));
            }
        }
Ejemplo n.º 2
0
    public IEnumerable <Stacky.Question> GetQuestions(Stacky.Site site, string[] tags)
    {
        var             siteClient = new StackyClient("1.0", "", site, new UrlClient(), new JsonProtocol());
        QuestionOptions qo         = new QuestionOptions();

        qo.IncludeBody = true;
        qo.Max         = 1000;
        qo.Tags        = tags;
        return(siteClient.GetQuestions(qo));
    }
Ejemplo n.º 3
0
    public IEnumerable <Stacky.Question> GetQuestions(string site)
    {
        Stacky.Site     apiSite    = GetSiteByName(site);
        var             siteClient = new StackyClient("1.0", "", apiSite, new UrlClient(), new JsonProtocol());
        QuestionOptions qo         = new QuestionOptions();

        qo.IncludeBody = true;
        qo.Max         = 1000;
        return(siteClient.GetQuestions(qo));
    }