diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-29 13:11:06 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-29 13:11:06 -0700 |
commit | 0beee6342329d9cac4cf9228427485ffadccd209 (patch) | |
tree | 74d77779e7eea488730b30ed4660ac7c5f2cc334 /src | |
parent | 72aae1e5b55511f6428dc66a2c00da890338dac5 (diff) | |
download | DotNetOpenAuth-0beee6342329d9cac4cf9228427485ffadccd209.zip DotNetOpenAuth-0beee6342329d9cac4cf9228427485ffadccd209.tar.gz DotNetOpenAuth-0beee6342329d9cac4cf9228427485ffadccd209.tar.bz2 |
Ooops... we weren't ready to make the Behaviors collections public.
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; } } |