diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 22:37:17 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-01 22:37:17 -0800 |
commit | 0a1042ae9ff54c5b3523e1cf4210c1fade4a9144 (patch) | |
tree | 2b9966e8bc51dfab2bf6e4c893177f2cadb34773 /samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs | |
parent | 9a90c9cf0884ad7e69de90e9d4dd6a2e50ef86bd (diff) | |
parent | 8aa6439564b60e762e66e0055600a0f1a2348803 (diff) | |
download | DotNetOpenAuth-0a1042ae9ff54c5b3523e1cf4210c1fade4a9144.zip DotNetOpenAuth-0a1042ae9ff54c5b3523e1cf4210c1fade4a9144.tar.gz DotNetOpenAuth-0a1042ae9ff54c5b3523e1cf4210c1fade4a9144.tar.bz2 |
Merge branch 'v3.2' into mono2
Diffstat (limited to 'samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs')
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs b/samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs index 580b1fa..0c0e194 100644 --- a/samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs +++ b/samples/OpenIdRelyingPartyWebForms/Code/CustomStoreDataSet1.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. -// Runtime Version:2.0.50727.4912 +// 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 OpenIdRelyingPartyWebForms.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 OpenIdRelyingPartyWebForms.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; |