diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Provider/OpenIdProvider.cs | 2 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Provider/OpenIdProvider.cs b/src/DotNetOpenAuth/OpenId/Provider/OpenIdProvider.cs index 79de919..46d351c 100644 --- a/src/DotNetOpenAuth/OpenId/Provider/OpenIdProvider.cs +++ b/src/DotNetOpenAuth/OpenId/Provider/OpenIdProvider.cs @@ -156,7 +156,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// Adding behaviors can impact the security settings of the <see cref="OpenIdProvider"/> /// in ways that subsequently removing the behaviors will not reverse. /// </remarks> - public ICollection<IProviderBehavior> Behaviors { + internal ICollection<IProviderBehavior> Behaviors { get { return this.behaviors; } } diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs index 68dd4e9..d4f9705 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs @@ -226,7 +226,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// Adding behaviors can impact the security settings of this <see cref="OpenIdRelyingParty"/> /// instance in ways that subsequently removing the behaviors will not reverse. /// </remarks> - public ICollection<IRelyingPartyBehavior> Behaviors { + internal ICollection<IRelyingPartyBehavior> Behaviors { get { return this.behaviors; } } |