summaryrefslogtreecommitdiffstats
path: root/samples/ServiceProvider/App_Code
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ServiceProvider/App_Code')
-rw-r--r--samples/ServiceProvider/App_Code/Constants.cs4
-rw-r--r--samples/ServiceProvider/App_Code/CustomOAuthTypeProvider.cs4
-rw-r--r--samples/ServiceProvider/App_Code/DatabaseTokenManager.cs4
-rw-r--r--samples/ServiceProvider/App_Code/Global.cs2
-rw-r--r--samples/ServiceProvider/App_Code/OAuthAuthorizationManager.cs1
-rw-r--r--samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs4
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.