diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-25 07:39:41 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-25 07:39:41 -0700 |
commit | 0af634db187612b552b7fb257580e7503227b10d (patch) | |
tree | 2cc0a4be6ad33248f5d9dac5e62d44bbc479a8ea /samples/OAuthServiceProvider/Code | |
parent | b9eefbf320f9bff41bc874001cc468b0fa68ddf6 (diff) | |
download | DotNetOpenAuth-0af634db187612b552b7fb257580e7503227b10d.zip DotNetOpenAuth-0af634db187612b552b7fb257580e7503227b10d.tar.gz DotNetOpenAuth-0af634db187612b552b7fb257580e7503227b10d.tar.bz2 |
Renamed the OAuthWrap namespaces to be OAuth2.
Diffstat (limited to 'samples/OAuthServiceProvider/Code')
3 files changed, 5 insertions, 5 deletions
diff --git a/samples/OAuthServiceProvider/Code/Global.cs b/samples/OAuthServiceProvider/Code/Global.cs index 44263e9..e8bacae 100644 --- a/samples/OAuthServiceProvider/Code/Global.cs +++ b/samples/OAuthServiceProvider/Code/Global.cs @@ -5,8 +5,8 @@ using System.Text; using System.Web; using DotNetOpenAuth.OAuth.Messages; - using DotNetOpenAuth.OAuthWrap; - using DotNetOpenAuth.OAuthWrap.Messages; + using DotNetOpenAuth.OAuth2; + using DotNetOpenAuth.OAuth2.Messages; /// <summary> /// The web application global events and properties. diff --git a/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs b/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs index e281b07..a0234e2 100644 --- a/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs +++ b/samples/OAuthServiceProvider/Code/OAuth2AuthorizationServer.cs @@ -7,8 +7,8 @@ using DotNetOpenAuth.Messaging; using DotNetOpenAuth.Messaging.Bindings; using DotNetOpenAuth.OAuth.ChannelElements; - using DotNetOpenAuth.OAuthWrap; - using DotNetOpenAuth.OAuthWrap.ChannelElements; + using DotNetOpenAuth.OAuth2; + using DotNetOpenAuth.OAuth2.ChannelElements; internal class OAuth2AuthorizationServer : IAuthorizationServer { internal static readonly RSAParameters AsymmetricKey; diff --git a/samples/OAuthServiceProvider/Code/OAuthAuthorizationManager.cs b/samples/OAuthServiceProvider/Code/OAuthAuthorizationManager.cs index 92038bd..be6d671 100644 --- a/samples/OAuthServiceProvider/Code/OAuthAuthorizationManager.cs +++ b/samples/OAuthServiceProvider/Code/OAuthAuthorizationManager.cs @@ -9,7 +9,7 @@ using System.ServiceModel.Security; using DotNetOpenAuth.OAuth; using DotNetOpenAuth.OAuth.ChannelElements; - using DotNetOpenAuth.OAuthWrap; + using DotNetOpenAuth.OAuth2; /// <summary> /// A WCF extension to authenticate incoming messages using OAuth. |