summaryrefslogtreecommitdiffstats
path: root/samples/OAuthClient/Facebook.aspx.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-05-26 08:05:05 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-05-26 08:05:05 -0700
commit41fd4b0f54b8080471e35822b0d8cccd7f621b3b (patch)
tree974617c64a945ad84190271881a8c49fa8efe4c4 /samples/OAuthClient/Facebook.aspx.cs
parent2a4da5e544a22d30d5b54a2696194d814d9a442f (diff)
downloadDotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.zip
DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.gz
DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.bz2
Fixes StyleCop messages.
Diffstat (limited to 'samples/OAuthClient/Facebook.aspx.cs')
-rw-r--r--samples/OAuthClient/Facebook.aspx.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthClient/Facebook.aspx.cs b/samples/OAuthClient/Facebook.aspx.cs
index e7261a0..008baa8 100644
--- a/samples/OAuthClient/Facebook.aspx.cs
+++ b/samples/OAuthClient/Facebook.aspx.cs
@@ -29,7 +29,7 @@
else
{
IOAuth2Graph oauth2Graph = facebookClient.GetGraph(authorization);
- // IOAuth2Graph oauth2Graph = facebookClient.GetGraph(authorization, new[] { FacebookGraph.Fields.Defaults, FacebookGraph.Fields.Email, FacebookGraph.Fields.Picture, FacebookGraph.Fields.Birthday });
+ //// IOAuth2Graph oauth2Graph = facebookClient.GetGraph(authorization, new[] { FacebookGraph.Fields.Defaults, FacebookGraph.Fields.Email, FacebookGraph.Fields.Picture, FacebookGraph.Fields.Birthday });
this.nameLabel.Text = HttpUtility.HtmlEncode(oauth2Graph.Name);
}