summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/Code/CustomStore.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-05-20 16:49:16 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-05-20 16:49:16 -0700
commit188513a8936c4ef70ed823500daa0864a7cc0085 (patch)
tree765da973ae440064901b1de127335d0210609c00 /samples/OpenIdProviderWebForms/Code/CustomStore.cs
parent9aa1e046c6ccd6fa0859709419c091bf6b52f465 (diff)
downloadDotNetOpenAuth-188513a8936c4ef70ed823500daa0864a7cc0085.zip
DotNetOpenAuth-188513a8936c4ef70ed823500daa0864a7cc0085.tar.gz
DotNetOpenAuth-188513a8936c4ef70ed823500daa0864a7cc0085.tar.bz2
Consolidated the IProviderApplicationStore and IRelyingPartyApplicationStore interfaces since they were equivalent.
Diffstat (limited to 'samples/OpenIdProviderWebForms/Code/CustomStore.cs')
-rw-r--r--samples/OpenIdProviderWebForms/Code/CustomStore.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/samples/OpenIdProviderWebForms/Code/CustomStore.cs b/samples/OpenIdProviderWebForms/Code/CustomStore.cs
index 0b2aed7..dc7f568 100644
--- a/samples/OpenIdProviderWebForms/Code/CustomStore.cs
+++ b/samples/OpenIdProviderWebForms/Code/CustomStore.cs
@@ -11,9 +11,7 @@ namespace OpenIdProviderWebForms.Code {
using System.Globalization;
using DotNetOpenAuth;
using DotNetOpenAuth.Configuration;
- using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId;
- using DotNetOpenAuth.OpenId.Provider;
/// <summary>
/// This custom store serializes all elements to demonstrate peristent and/or shared storage.
@@ -25,7 +23,7 @@ namespace OpenIdProviderWebForms.Code {
/// But we "persist" all associations and nonces into a DataTable to demonstrate
/// that using a database is possible.
/// </remarks>
- public class CustomStore : IProviderApplicationStore {
+ public class CustomStore : IOpenIdApplicationStore {
private static CustomStoreDataSet dataSet = new CustomStoreDataSet();
#region INonceStore Members