diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-27 19:16:43 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-27 19:16:43 -0700 |
commit | c843a748845923bb1171a5bed28d37f039767005 (patch) | |
tree | 84cf1b44a87140eab6472b77b8a3df5a8fcb3253 /src | |
parent | 2c57f7a7f89c3f9dc8a36fbf919177be5e801256 (diff) | |
download | DotNetOpenAuth-c843a748845923bb1171a5bed28d37f039767005.zip DotNetOpenAuth-c843a748845923bb1171a5bed28d37f039767005.tar.gz DotNetOpenAuth-c843a748845923bb1171a5bed28d37f039767005.tar.bz2 |
Fixed FxCop messages.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Provider/PrivatePersonalIdentifierProviderBase.cs | 1 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Provider/PrivatePersonalIdentifierProviderBase.cs b/src/DotNetOpenAuth/OpenId/Provider/PrivatePersonalIdentifierProviderBase.cs index b016a46..399a84f 100644 --- a/src/DotNetOpenAuth/OpenId/Provider/PrivatePersonalIdentifierProviderBase.cs +++ b/src/DotNetOpenAuth/OpenId/Provider/PrivatePersonalIdentifierProviderBase.cs @@ -185,6 +185,7 @@ namespace DotNetOpenAuth.OpenId.Provider { /// </summary> /// <param name="uriHash">The unique part of the Identifier to append to the common first part.</param> /// <returns>The full PPID Identifier.</returns> + [SuppressMessage("Microsoft.Usage", "CA2234:PassSystemUriObjectsInsteadOfStrings", Justification = "NOT equivalent overload. The recommended one breaks on relative URIs.")] protected virtual Uri AppendIdentifiers(string uriHash) { Contract.Requires(!String.IsNullOrEmpty(uriHash)); ErrorUtilities.VerifyNonZeroLength(uriHash, "uriHash"); diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs index 3e0c8db..8499178 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/StandardRelyingPartyApplicationStore.cs @@ -48,12 +48,12 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// Gets the best association (the one with the longest remaining life) for a given key. /// </summary> /// <param name="distinguishingFactor">The Uri (for relying parties) or Smart/Dumb (for Providers).</param> - /// <param name="securitySettings">The security settings.</param> + /// <param name="securityRequirements">The security settings.</param> /// <returns> /// The requested association, or null if no unexpired <see cref="Association"/>s exist for the given key. /// </returns> - public Association GetAssociation(Uri distinguishingFactor, SecuritySettings securitySettings) { - return this.associationStore.GetAssociation(distinguishingFactor, securitySettings); + public Association GetAssociation(Uri distinguishingFactor, SecuritySettings securityRequirements) { + return this.associationStore.GetAssociation(distinguishingFactor, securityRequirements); } /// <summary> |