diff options
Diffstat (limited to 'samples/Consumer')
-rw-r--r-- | samples/Consumer/App_Code/InMemoryTokenManager.cs | 4 | ||||
-rw-r--r-- | samples/Consumer/SampleWcf.aspx.cs | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/samples/Consumer/App_Code/InMemoryTokenManager.cs b/samples/Consumer/App_Code/InMemoryTokenManager.cs index 7312c2e..6b20ad9 100644 --- a/samples/Consumer/App_Code/InMemoryTokenManager.cs +++ b/samples/Consumer/App_Code/InMemoryTokenManager.cs @@ -7,8 +7,8 @@ using System;
using System.Collections.Generic;
using System.Diagnostics;
-using DotNetOAuth.ChannelElements;
-using DotNetOAuth.Messages;
+using DotNetOAuth.OAuth.ChannelElements;
+using DotNetOAuth.OAuth.Messages;
public class InMemoryTokenManager : ITokenManager {
private Dictionary<string, string> tokensAndSecrets = new Dictionary<string, string>();
diff --git a/samples/Consumer/SampleWcf.aspx.cs b/samples/Consumer/SampleWcf.aspx.cs index 01afb43..ee776f1 100644 --- a/samples/Consumer/SampleWcf.aspx.cs +++ b/samples/Consumer/SampleWcf.aspx.cs @@ -8,8 +8,9 @@ using System.ServiceModel.Channels; using System.ServiceModel.Security;
using System.Web.UI.WebControls;
using DotNetOAuth;
-using DotNetOAuth.ChannelElements;
using DotNetOAuth.Messaging;
+using DotNetOAuth.OAuth;
+using DotNetOAuth.OAuth.ChannelElements;
using SampleServiceProvider;
/// <summary>
|