summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId/OpenId/Association.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId/Association.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId/OpenId/Association.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Association.cs b/src/DotNetOpenAuth.OpenId/OpenId/Association.cs
index 5b97ad4..06f920a 100644
--- a/src/DotNetOpenAuth.OpenId/OpenId/Association.cs
+++ b/src/DotNetOpenAuth.OpenId/OpenId/Association.cs
@@ -113,7 +113,7 @@ namespace DotNetOpenAuth.OpenId {
protected static TimeSpan DumbSecretLifetime {
get {
Contract.Ensures(Contract.Result<TimeSpan>() > TimeSpan.Zero);
- return DotNetOpenAuthSection.Configuration.OpenId.MaxAuthenticationTime;
+ return OpenIdElement.Configuration.MaxAuthenticationTime;
}
}
@@ -132,7 +132,7 @@ namespace DotNetOpenAuth.OpenId {
private static TimeSpan MinimumUsefulAssociationLifetime {
get {
Contract.Ensures(Contract.Result<TimeSpan>() > TimeSpan.Zero);
- return DotNetOpenAuthSection.Configuration.OpenId.MaxAuthenticationTime;
+ return OpenIdElement.Configuration.MaxAuthenticationTime;
}
}