diff options
Diffstat (limited to 'src/DotNetOpenAuth/OpenId/Behaviors')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs | 4 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Behaviors/PpidGeneration.cs | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs b/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs index 23377c8..20c207f 100644 --- a/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs +++ b/src/DotNetOpenAuth/OpenId/Behaviors/GsaIcamProfile.cs @@ -114,6 +114,8 @@ namespace DotNetOpenAuth.OpenId.Behaviors { !requestInternal.AppliedExtensions.OfType<FetchRequest>().Any()), BehaviorStrings.PiiIncludedWithNoPiiPolicy); } + + Reporting.RecordEventOccurrence(this, "RP"); } /// <summary> @@ -256,6 +258,8 @@ namespace DotNetOpenAuth.OpenId.Behaviors { } } } + + Reporting.RecordEventOccurrence(this, "OP"); } return result; diff --git a/src/DotNetOpenAuth/OpenId/Behaviors/PpidGeneration.cs b/src/DotNetOpenAuth/OpenId/Behaviors/PpidGeneration.cs index baef943..a465611 100644 --- a/src/DotNetOpenAuth/OpenId/Behaviors/PpidGeneration.cs +++ b/src/DotNetOpenAuth/OpenId/Behaviors/PpidGeneration.cs @@ -108,6 +108,8 @@ namespace DotNetOpenAuth.OpenId.Behaviors { if (!papeResponse.ActualPolicies.Contains(AuthenticationPolicies.PrivatePersonalIdentifier)) { papeResponse.ActualPolicies.Add(AuthenticationPolicies.PrivatePersonalIdentifier); } + + Reporting.RecordEventOccurrence(this, string.Empty); } } |