summaryrefslogtreecommitdiffstats
path: root/projecttemplates/RelyingPartyLogic/Model.OpenIdAssociation.cs
blob: 94ab09a5cf84c3d80b3e85b2adf6d32c542b1cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
		}
	}
}