summaryrefslogtreecommitdiffstats
path: root/samples/OAuthConsumer/Twitter.aspx.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-01-08 16:49:55 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2010-01-08 16:49:55 -0800
commite60233062f0744249b00f8eb0e079851525a21f3 (patch)
treecbc2a1a823df0d0696f79b045c7e834bb56037d8 /samples/OAuthConsumer/Twitter.aspx.cs
parent07c9f0a7b83d4399aeab5a57ea2ae57ac8459fb6 (diff)
parent55e1ef5ec8417f33da4ff83d9083cf7369c8bfff (diff)
downloadDotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.zip
DotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.tar.gz
DotNetOpenAuth-e60233062f0744249b00f8eb0e079851525a21f3.tar.bz2
Merge branch 'master' into mvcProjTemplate
Conflicts: projecttemplates/RelyingPartyLogic/Utilities.cs src/DotNetOpenAuth.sln
Diffstat (limited to 'samples/OAuthConsumer/Twitter.aspx.cs')
-rw-r--r--samples/OAuthConsumer/Twitter.aspx.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthConsumer/Twitter.aspx.cs b/samples/OAuthConsumer/Twitter.aspx.cs
index a4fb0cb..9b9eced 100644
--- a/samples/OAuthConsumer/Twitter.aspx.cs
+++ b/samples/OAuthConsumer/Twitter.aspx.cs
@@ -54,7 +54,7 @@ public partial class Twitter : System.Web.UI.Page {
protected void downloadUpdates_Click(object sender, EventArgs e) {
var twitter = new WebConsumer(TwitterConsumer.ServiceDescription, this.TokenManager);
- XPathDocument updates = new XPathDocument(TwitterConsumer.GetUpdates(twitter, AccessToken).CreateReader());
+ XPathDocument updates = new XPathDocument(TwitterConsumer.GetUpdates(twitter, this.AccessToken).CreateReader());
XPathNavigator nav = updates.CreateNavigator();
var parsedUpdates = from status in nav.Select("/statuses/status").OfType<XPathNavigator>()
where !status.SelectSingleNode("user/protected").ValueAsBoolean