summaryrefslogtreecommitdiffstats
path: root/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-06-07 14:06:59 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-06-07 14:06:59 -0700
commit8c2790bc66818c13cc9842a1c6250f3eee5ebca5 (patch)
tree7d66b4fdbe2abcf6fd4453c1043277689228f630 /samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs
parent7d741b35a4499491df727523df78306cc581e5ff (diff)
downloadDotNetOpenAuth-8c2790bc66818c13cc9842a1c6250f3eee5ebca5.zip
DotNetOpenAuth-8c2790bc66818c13cc9842a1c6250f3eee5ebca5.tar.gz
DotNetOpenAuth-8c2790bc66818c13cc9842a1c6250f3eee5ebca5.tar.bz2
OAuth SP and web consumer work under OAuth 1.0a.
Diffstat (limited to 'samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs')
-rw-r--r--samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs b/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs
index d9c2ba4..998f781 100644
--- a/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs
+++ b/samples/OAuthServiceProvider/App_Code/DataClasses.designer.cs
@@ -633,6 +633,8 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange
private string _RequestTokenVerifier;
+ private string _RequestTokenCallback;
+
private EntityRef<OAuthConsumer> _OAuthConsumer;
private EntityRef<User> _User;
@@ -659,6 +661,8 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange
partial void OnScopeChanged();
partial void OnRequestTokenVerifierChanging(string value);
partial void OnRequestTokenVerifierChanged();
+ partial void OnRequestTokenCallbackChanging(string value);
+ partial void OnRequestTokenCallbackChanged();
#endregion
public OAuthToken()
@@ -856,6 +860,26 @@ public partial class OAuthToken : INotifyPropertyChanging, INotifyPropertyChange
}
}
+ [Column(Storage="_RequestTokenCallback")]
+ public string RequestTokenCallback
+ {
+ get
+ {
+ return this._RequestTokenCallback;
+ }
+ set
+ {
+ if ((this._RequestTokenCallback != value))
+ {
+ this.OnRequestTokenCallbackChanging(value);
+ this.SendPropertyChanging();
+ this._RequestTokenCallback = value;
+ this.SendPropertyChanged("RequestTokenCallback");
+ this.OnRequestTokenCallbackChanged();
+ }
+ }
+ }
+
[Association(Name="OAuthConsumer_OAuthToken", Storage="_OAuthConsumer", ThisKey="ConsumerId", OtherKey="ConsumerId", IsForeignKey=true, DeleteOnNull=true, DeleteRule="CASCADE")]
public OAuthConsumer OAuthConsumer
{