summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-09-15 22:11:08 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-09-15 22:11:08 -0700
commit07e0139aaeec0a5fb6502eb908ab3c5fc7dac9ef (patch)
treed5f33410d9fb77d8a65e7f944c2b727287c3a5f8 /samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs
parentafe1b92ce1d37dc89cddb42ab6b7d257311df65f (diff)
downloadDotNetOpenAuth-07e0139aaeec0a5fb6502eb908ab3c5fc7dac9ef.zip
DotNetOpenAuth-07e0139aaeec0a5fb6502eb908ab3c5fc7dac9ef.tar.gz
DotNetOpenAuth-07e0139aaeec0a5fb6502eb908ab3c5fc7dac9ef.tar.bz2
Fixed faulty sample custom nonce store.
Fixes #129
Diffstat (limited to 'samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs')
-rw-r--r--samples/OpenIdProviderWebForms/Code/CustomStoreDataSet.Designer.cs6
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;