diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-26 18:57:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-26 18:57:42 -0700 |
commit | 2d10888fe24b4ab9407e016ced20ae56622b15af (patch) | |
tree | 8a902072739e65b853033bbbebf1af063bad7f2d /samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs | |
parent | ed8e510edf71df2cda6dd18e263540626b3537ae (diff) | |
download | DotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.zip DotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.tar.gz DotNetOpenAuth-2d10888fe24b4ab9407e016ced20ae56622b15af.tar.bz2 |
Stylecop fixes.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs b/samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs index 496b14b..a737d30 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs @@ -1,15 +1,16 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using DotNetOpenAuth.OpenId.Provider; -using DotNetOpenAuth.OpenId; +namespace DotNetOpenAuth.ApplicationBlock.Provider { + using System; + using DotNetOpenAuth.OpenId; + using DotNetOpenAuth.OpenId.Provider; -namespace DotNetOpenAuth.ApplicationBlock.Provider { public static class AuthenticationRequestExtensions { /// <summary> /// Removes all personally identifiable information from the positive assertion. /// </summary> + /// <param name="request">The incoming authentication request.</param> + /// <param name="localIdentifier">The OP local identifier, before the anonymous hash is applied to it.</param> + /// <param name="anonymousIdentifierProvider">The anonymous identifier provider.</param> + /// <param name="pairwiseUnique">if set to <c>true</c> the anonymous identifier will be unique to the requesting relying party's realm.</param> /// <remarks> /// The openid.claimed_id and openid.identity values are hashed. /// </remarks> |