Navigation Menu

Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
Made StandardRelyingPartyApplicationStore public.
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Jun 20, 2009
1 parent 7575195 commit 1bc51b4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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>
Expand All @@ -28,7 +28,7 @@ internal class StandardRelyingPartyApplicationStore : IRelyingPartyApplicationSt
/// <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>();
}
Expand Down

0 comments on commit 1bc51b4

Please sign in to comment.