diff options
Diffstat (limited to 'samples/ConsumerWpf')
-rw-r--r-- | samples/ConsumerWpf/InMemoryTokenManager.cs | 4 | ||||
-rw-r--r-- | samples/ConsumerWpf/MainWindow.xaml.cs | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/samples/ConsumerWpf/InMemoryTokenManager.cs b/samples/ConsumerWpf/InMemoryTokenManager.cs index b29d2e0..ef70ce8 100644 --- a/samples/ConsumerWpf/InMemoryTokenManager.cs +++ b/samples/ConsumerWpf/InMemoryTokenManager.cs @@ -8,8 +8,8 @@ namespace DotNetOAuth.Samples.ConsumerWpf { using System;
using System.Collections.Generic;
using System.Diagnostics;
- using DotNetOAuth.ChannelElements;
- using DotNetOAuth.Messages;
+ using DotNetOAuth.OAuth.ChannelElements;
+ using DotNetOAuth.OAuth.Messages;
internal class InMemoryTokenManager : ITokenManager {
private Dictionary<string, string> tokensAndSecrets = new Dictionary<string, string>();
diff --git a/samples/ConsumerWpf/MainWindow.xaml.cs b/samples/ConsumerWpf/MainWindow.xaml.cs index 4c983e8..884269a 100644 --- a/samples/ConsumerWpf/MainWindow.xaml.cs +++ b/samples/ConsumerWpf/MainWindow.xaml.cs @@ -15,9 +15,10 @@ using System.Windows.Shapes;
using System.Xml.Linq;
using DotNetOAuth;
- using DotNetOAuth.ChannelElements;
using DotNetOAuth.ApplicationBlock;
using DotNetOAuth.Messaging;
+ using DotNetOAuth.OAuth;
+ using DotNetOAuth.OAuth.ChannelElements;
/// <summary>
/// Interaction logic for MainWindow.xaml
|