diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-11-03 16:02:57 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-11-03 16:02:57 -0800 |
commit | aa1f55f58a561ff64dc268977d0d7c9decb92bbe (patch) | |
tree | fd685f00353d26493b40df7eaeac78745e27d1b8 /samples/ServiceProvider/App_Code | |
parent | f1794fc8779ae39ac3d5bc6e8b811523e62ca482 (diff) | |
download | DotNetOpenAuth-aa1f55f58a561ff64dc268977d0d7c9decb92bbe.zip DotNetOpenAuth-aa1f55f58a561ff64dc268977d0d7c9decb92bbe.tar.gz DotNetOpenAuth-aa1f55f58a561ff64dc268977d0d7c9decb92bbe.tar.bz2 |
Moved all the OAuth classes into its own namespace in preparation to receiving DotNetOpenId merge.
Diffstat (limited to 'samples/ServiceProvider/App_Code')
6 files changed, 10 insertions, 9 deletions
diff --git a/samples/ServiceProvider/App_Code/Constants.cs b/samples/ServiceProvider/App_Code/Constants.cs index 897834a..4adfd13 100644 --- a/samples/ServiceProvider/App_Code/Constants.cs +++ b/samples/ServiceProvider/App_Code/Constants.cs @@ -1,7 +1,7 @@ using System;
-using DotNetOAuth;
-using DotNetOAuth.ChannelElements;
using DotNetOAuth.Messaging;
+using DotNetOAuth.OAuth;
+using DotNetOAuth.OAuth.ChannelElements;
/// <summary>
/// Service Provider definitions.
diff --git a/samples/ServiceProvider/App_Code/CustomOAuthTypeProvider.cs b/samples/ServiceProvider/App_Code/CustomOAuthTypeProvider.cs index 98eae68..7adb808 100644 --- a/samples/ServiceProvider/App_Code/CustomOAuthTypeProvider.cs +++ b/samples/ServiceProvider/App_Code/CustomOAuthTypeProvider.cs @@ -2,8 +2,8 @@ using System.Collections.Generic;
using System.Linq;
using System.Web;
-using DotNetOAuth.ChannelElements;
-using DotNetOAuth.Messages;
+using DotNetOAuth.OAuth.ChannelElements;
+using DotNetOAuth.OAuth.Messages;
/// <summary>
/// A custom class that will cause the OAuth library to use our custom message types
diff --git a/samples/ServiceProvider/App_Code/DatabaseTokenManager.cs b/samples/ServiceProvider/App_Code/DatabaseTokenManager.cs index 2a0e265..3a567fd 100644 --- a/samples/ServiceProvider/App_Code/DatabaseTokenManager.cs +++ b/samples/ServiceProvider/App_Code/DatabaseTokenManager.cs @@ -8,8 +8,8 @@ using System; using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
-using DotNetOAuth.ChannelElements;
-using DotNetOAuth.Messages;
+using DotNetOAuth.OAuth.ChannelElements;
+using DotNetOAuth.OAuth.Messages;
public class DatabaseTokenManager : ITokenManager {
#region ITokenManager Members
diff --git a/samples/ServiceProvider/App_Code/Global.cs b/samples/ServiceProvider/App_Code/Global.cs index aa0d738..9ece43c 100644 --- a/samples/ServiceProvider/App_Code/Global.cs +++ b/samples/ServiceProvider/App_Code/Global.cs @@ -3,7 +3,7 @@ using System.Linq; using System.ServiceModel;
using System.Text;
using System.Web;
-using DotNetOAuth.Messages;
+using DotNetOAuth.OAuth.Messages;
/// <summary>
/// The web application global events and properties.
diff --git a/samples/ServiceProvider/App_Code/OAuthAuthorizationManager.cs b/samples/ServiceProvider/App_Code/OAuthAuthorizationManager.cs index 9d2e3e9..8188c67 100644 --- a/samples/ServiceProvider/App_Code/OAuthAuthorizationManager.cs +++ b/samples/ServiceProvider/App_Code/OAuthAuthorizationManager.cs @@ -3,6 +3,7 @@ using System.Linq; using System.ServiceModel;
using System.ServiceModel.Channels;
using DotNetOAuth;
+using DotNetOAuth.OAuth;
/// <summary>
/// A WCF extension to authenticate incoming messages using OAuth.
diff --git a/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs b/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs index fa23dc2..7459653 100644 --- a/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs +++ b/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs @@ -1,5 +1,5 @@ -using DotNetOAuth.Messages;
-using DotNetOAuth.Messaging;
+using DotNetOAuth.Messaging;
+using DotNetOAuth.OAuth.Messages;
/// <summary>
/// A custom web app version of the message sent to request an unauthorized token.
|