diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-10 21:17:28 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-10 21:17:28 -0800 |
commit | 175bd8ea3e95649b4be51dce17ae175db3400c3c (patch) | |
tree | 22f8ea3120e80d47afbbe0c3f6e82a6b3712e3ef /projecttemplates/WebFormsRelyingParty/Model.Designer.cs | |
parent | 5ac3804dcd815e6b2aeba79c7faecdcd3649d73d (diff) | |
download | DotNetOpenAuth-175bd8ea3e95649b4be51dce17ae175db3400c3c.zip DotNetOpenAuth-175bd8ea3e95649b4be51dce17ae175db3400c3c.tar.gz DotNetOpenAuth-175bd8ea3e95649b4be51dce17ae175db3400c3c.tar.bz2 |
Added scope to issued OAuth tokens.
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Model.Designer.cs')
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Model.Designer.cs | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Model.Designer.cs b/projecttemplates/WebFormsRelyingParty/Model.Designer.cs index 85bd476..5105374 100644 --- a/projecttemplates/WebFormsRelyingParty/Model.Designer.cs +++ b/projecttemplates/WebFormsRelyingParty/Model.Designer.cs @@ -15,7 +15,7 @@ [assembly: global::System.Data.Objects.DataClasses.EdmRelationshipAttribute("DatabaseModel", "FK_IssuedToken_User", "User", global::System.Data.Metadata.Edm.RelationshipMultiplicity.ZeroOrOne, typeof(WebFormsRelyingParty.User), "IssuedTokens", global::System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(WebFormsRelyingParty.IssuedToken))] // Original file name: -// Generation date: 11/10/2009 8:48:49 PM +// Generation date: 11/10/2009 9:17:16 PM namespace WebFormsRelyingParty { @@ -922,6 +922,29 @@ namespace WebFormsRelyingParty partial void OnCreatedOnChanging(global::System.DateTime value); partial void OnCreatedOnChanged(); /// <summary> + /// There are no comments for Property Scope in the schema. + /// </summary> + [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute()] + [global::System.Runtime.Serialization.DataMemberAttribute()] + public string Scope + { + get + { + return this._Scope; + } + set + { + this.OnScopeChanging(value); + this.ReportPropertyChanging("Scope"); + this._Scope = global::System.Data.Objects.DataClasses.StructuralObject.SetValidValue(value, true); + this.ReportPropertyChanged("Scope"); + this.OnScopeChanged(); + } + } + private string _Scope; + partial void OnScopeChanging(string value); + partial void OnScopeChanged(); + /// <summary> /// There are no comments for Consumer in the schema. /// </summary> [global::System.Data.Objects.DataClasses.EdmRelationshipNavigationPropertyAttribute("DatabaseModel", "FK_IssuedToken_Consumer", "Consumer")] |