diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 12:51:48 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-03 12:51:48 -0800 |
commit | d85f1056a53bd1c32a223cefab946d339052911d (patch) | |
tree | 138476fa15809351bfdf0bbc17ebdae9976b205f /samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs | |
parent | 02cc42d668f2c79bbdb62a0824174c54e6060f95 (diff) | |
parent | cf779a797fd80dfe7f6ee89ce94605dda13ba17f (diff) | |
download | DotNetOpenAuth-d85f1056a53bd1c32a223cefab946d339052911d.zip DotNetOpenAuth-d85f1056a53bd1c32a223cefab946d339052911d.tar.gz DotNetOpenAuth-d85f1056a53bd1c32a223cefab946d339052911d.tar.bz2 |
Merge branch 'v3.0' into v3.1
Conflicts:
src/version.txt
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; |