diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-14 22:05:04 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-07-14 22:05:04 -0700 |
commit | 9b4fc3a38cbd1b427c25b906a5562ec5586f9340 (patch) | |
tree | 40244fa2bfa767bf8bfcfbf19690a8d63fb2be05 /projecttemplates/RelyingPartyLogic/Model.Designer.cs | |
parent | 1882f59229ee85cf2b9cf66cfd2ada1cc27520f7 (diff) | |
download | DotNetOpenAuth-9b4fc3a38cbd1b427c25b906a5562ec5586f9340.zip DotNetOpenAuth-9b4fc3a38cbd1b427c25b906a5562ec5586f9340.tar.gz DotNetOpenAuth-9b4fc3a38cbd1b427c25b906a5562ec5586f9340.tar.bz2 |
Lots of work toward OAuth 2.0 in project templates and OAuthConsumerWpf sample.
The WebFormsRelyingParty now works with the sample WPF OAuth client in a modified user-agent mode.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/Model.Designer.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/Model.Designer.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/projecttemplates/RelyingPartyLogic/Model.Designer.cs b/projecttemplates/RelyingPartyLogic/Model.Designer.cs index 564bde5..8884760 100644 --- a/projecttemplates/RelyingPartyLogic/Model.Designer.cs +++ b/projecttemplates/RelyingPartyLogic/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.One, typeof(RelyingPartyLogic.User), "ClientAuthorization", global::System.Data.Metadata.Edm.RelationshipMultiplicity.Many, typeof(RelyingPartyLogic.ClientAuthorization))] // Original file name: -// Generation date: 7/14/2010 7:00:56 AM +// Generation date: 7/14/2010 9:35:17 PM namespace RelyingPartyLogic { @@ -1190,12 +1190,14 @@ namespace RelyingPartyLogic /// </summary> /// <param name="clientId">Initial value of ClientId.</param> /// <param name="clientIdentifier">Initial value of ClientIdentifier.</param> + /// <param name="name">Initial value of Name.</param> [global::System.CodeDom.Compiler.GeneratedCode("System.Data.Entity.Design.EntityClassGenerator", "4.0.0.0")] - public static Client CreateClient(int clientId, string clientIdentifier) + public static Client CreateClient(int clientId, string clientIdentifier, string name) { Client client = new Client(); client.ClientId = clientId; client.ClientIdentifier = clientIdentifier; + client.Name = name; return client; } /// <summary> @@ -1309,7 +1311,7 @@ namespace RelyingPartyLogic /// <summary> /// There are no comments for property Name in the schema. /// </summary> - [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute()] + [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute(IsNullable=false)] [global::System.Runtime.Serialization.DataMemberAttribute()] [global::System.CodeDom.Compiler.GeneratedCode("System.Data.Entity.Design.EntityClassGenerator", "4.0.0.0")] public string Name @@ -1322,7 +1324,7 @@ namespace RelyingPartyLogic { this.OnNameChanging(value); this.ReportPropertyChanging("Name"); - this._Name = global::System.Data.Objects.DataClasses.StructuralObject.SetValidValue(value, true); + this._Name = global::System.Data.Objects.DataClasses.StructuralObject.SetValidValue(value, false); this.ReportPropertyChanged("Name"); this.OnNameChanged(); } |