summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/OAuth.ashx
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-05-31 08:51:47 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-05-31 08:51:47 -0700
commit5c67cca471290fcac511ddcd73c33d31a84e6e5c (patch)
tree8af346ae332fd875ad3d2413a359e355411a2673 /samples/OAuthServiceProvider/OAuth.ashx
parent2926368c2fde104a74afd1fc8ea34c9a5b72d3b6 (diff)
downloadDotNetOpenAuth-5c67cca471290fcac511ddcd73c33d31a84e6e5c.zip
DotNetOpenAuth-5c67cca471290fcac511ddcd73c33d31a84e6e5c.tar.gz
DotNetOpenAuth-5c67cca471290fcac511ddcd73c33d31a84e6e5c.tar.bz2
Fixed some bugs.
Diffstat (limited to 'samples/OAuthServiceProvider/OAuth.ashx')
-rw-r--r--samples/OAuthServiceProvider/OAuth.ashx2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthServiceProvider/OAuth.ashx b/samples/OAuthServiceProvider/OAuth.ashx
index 8a74926..efa8140 100644
--- a/samples/OAuthServiceProvider/OAuth.ashx
+++ b/samples/OAuthServiceProvider/OAuth.ashx
@@ -11,7 +11,7 @@ using DotNetOpenAuth.Messaging;
using OAuthServiceProvider.Code;
public class OAuth : IHttpHandler, IRequiresSessionState {
- ServiceProvider sp;
+ private ServiceProvider sp;
public OAuth() {
sp = new ServiceProvider(Constants.SelfDescription, Global.TokenManager, new CustomOAuthMessageFactory(Global.TokenManager));