// Pass them into the factory constructor var mentions = from q in TwitterQuery.CreateFor<Mentions>(_consumerKey, _consumerSecret, _accessToken, _accessTokenSecret) where q.Page == 2 && q.Count == 100 // <-- Executed before API call select q;
// Pass them into the query var mentions = from q in TwitterQuery.CreateFor<Mentions>(_consumerKey, _consumerSecret) where q.Token == _accessToken && q.TokenSecret == _accessTokenSecret select q;