summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-19 08:03:50 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-19 23:13:36 -0700
commit1bc51b4d992eb76e647b95ba73fa9881546241a7 (patch)
treefcd40f2ee37be9b6b57d363adadbb2c31a712913 /src
parent75751959b6f89ea7de9a37eb42edabc0620d7aff (diff)
downloadDotNetOpenAuth-1bc51b4d992eb76e647b95ba73fa9881546241a7.zip
DotNetOpenAuth-1bc51b4d992eb76e647b95ba73fa9881546241a7.tar.gz
DotNetOpenAuth-1bc51b4d992eb76e647b95ba73fa9881546241a7.tar.bz2
Made StandardRelyingPartyApplicationStore public.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs
index 96dd8d8..3e0c8db 100644
--- a/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs
+++ b/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs
@@ -14,7 +14,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
/// An in-memory store for Relying Parties, suitable for single server, single process
/// ASP.NET web sites.
/// </summary>
- internal class StandardRelyingPartyApplicationStore : IRelyingPartyApplicationStore {
+ public class StandardRelyingPartyApplicationStore : IRelyingPartyApplicationStore {
/// <summary>
/// The nonce store to use.
/// </summary>
@@ -28,7 +28,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty {
/// <summary>
/// Initializes a new instance of the <see cref="StandardRelyingPartyApplicationStore"/> class.
/// </summary>
- internal StandardRelyingPartyApplicationStore() {
+ public StandardRelyingPartyApplicationStore() {
this.nonceStore = new NonceMemoryStore(DotNetOpenAuthSection.Configuration.OpenId.MaxAuthenticationTime);
this.associationStore = new AssociationMemoryStore<Uri>();
}