summaryrefslogtreecommitdiffstats
path: root/samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-04-26 18:57:42 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-04-26 18:57:42 -0700
commit2d10888fe24b4ab9407e016ced20ae56622b15af (patch)
tree8a902072739e65b853033bbbebf1af063bad7f2d /samples/DotNetOpenAuth.ApplicationBlock/Provider/AuthenticationRequestExtensions.cs
parented8e510edf71df2cda6dd18e263540626b3537ae (diff)
downloadDotNetOpenAuth-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.cs15
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>