summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs')
-rw-r--r--projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs b/projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs
new file mode 100644
index 0000000..94ab09a
--- /dev/null
+++ b/projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs
@@ -0,0 +1,18 @@
+//-----------------------------------------------------------------------
+// <copyright file="Model.OpenIdAssociation.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace RelyingPartyLogic {
+ using System;
+ using System.Collections.Generic;
+ using System.Linq;
+ using System.Text;
+
+ public partial class OpenIdAssociation {
+ partial void OnPrivateDataChanged() {
+ this.PrivateDataLength = this.PrivateData.Length;
+ }
+ }
+}