diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 12:57:01 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 12:57:01 -0800 |
commit | 7ef43cfe9d4037be93fd4de753873c3d2845c77d (patch) | |
tree | 7385ef6363146cc6a33db5277cf76fe2d66e1e9e /samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs | |
parent | 22f4d4bec9197c9bfb3ab3311124e7c4b0777641 (diff) | |
parent | 89b5c35ae19f81d8ead9109ea2c9d5871d419f8c (diff) | |
download | DotNetOpenAuth-7ef43cfe9d4037be93fd4de753873c3d2845c77d.zip DotNetOpenAuth-7ef43cfe9d4037be93fd4de753873c3d2845c77d.tar.gz DotNetOpenAuth-7ef43cfe9d4037be93fd4de753873c3d2845c77d.tar.bz2 |
Merge branch 'v3.2'
Conflicts:
src/DotNetOpenAuth.Test/DotNetOpenAuth.Test.csproj
src/DotNetOpenAuth.sln
src/DotNetOpenAuth/OpenId/Provider/IProviderBehavior.cs
src/DotNetOpenAuth/OpenId/RelyingParty/IRelyingPartyBehavior.cs
Diffstat (limited to 'samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs')
-rw-r--r-- | samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs b/samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs index d836261..813ff62 100644 --- a/samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs +++ b/samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.3521 +// Runtime Version:2.0.50727.4927 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -678,8 +678,9 @@ namespace OpenIdProviderWebForms.Code { } [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - public NonceRow FindByCodeContext(string Code, string Context) { + public NonceRow FindByIssuedCodeContext(System.DateTime Issued, string Code, string Context) { return ((NonceRow)(this.Rows.Find(new object[] { + Issued, Code, Context}))); } @@ -715,6 +716,7 @@ namespace OpenIdProviderWebForms.Code { this.columnExpires = new global::System.Data.DataColumn("Expires", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element); base.Columns.Add(this.columnExpires); this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] { + this.columnIssued, this.columnCode, this.columnContext}, true)); this.columnContext.AllowDBNull = false; |