diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-11 22:28:15 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-11 22:28:15 -0800 |
commit | f7c578cc7c7713de3348a839d0d9caeba643a33d (patch) | |
tree | b40ff1c2369f7517b14aa8b94d684758c7e3d0d3 | |
parent | b7ffd79dacef560ed62bf4e9832d7e5f86a7103d (diff) | |
download | DotNetOpenAuth-f7c578cc7c7713de3348a839d0d9caeba643a33d.zip DotNetOpenAuth-f7c578cc7c7713de3348a839d0d9caeba643a33d.tar.gz DotNetOpenAuth-f7c578cc7c7713de3348a839d0d9caeba643a33d.tar.bz2 |
Made the "as string" and "as int" entity properties private, since we have strong-typed accessors for these properties.
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Model.Designer.cs | 18 | ||||
-rw-r--r-- | projecttemplates/WebFormsRelyingParty/Model.edmx | 8 |
2 files changed, 11 insertions, 15 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Model.Designer.cs b/projecttemplates/WebFormsRelyingParty/Model.Designer.cs index 5105374..d265efa 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 9:17:16 PM +// Generation date: 11/11/2009 10:26:25 PM namespace WebFormsRelyingParty { @@ -598,14 +598,12 @@ namespace WebFormsRelyingParty /// Create a new Consumer object. /// </summary> /// <param name="consumerKey">Initial value of ConsumerKey.</param> - /// <param name="verificationCodeFormatAsInt">Initial value of VerificationCodeFormatAsInt.</param> /// <param name="verificationCodeLength">Initial value of VerificationCodeLength.</param> /// <param name="consumerId">Initial value of ConsumerId.</param> - public static Consumer CreateConsumer(string consumerKey, int verificationCodeFormatAsInt, int verificationCodeLength, int consumerId) + public static Consumer CreateConsumer(string consumerKey, int verificationCodeLength, int consumerId) { Consumer consumer = new Consumer(); consumer.ConsumerKey = consumerKey; - consumer.VerificationCodeFormatAsInt = verificationCodeFormatAsInt; consumer.VerificationCodeLength = verificationCodeLength; consumer.ConsumerId = consumerId; return consumer; @@ -661,7 +659,7 @@ namespace WebFormsRelyingParty /// </summary> [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute()] [global::System.Runtime.Serialization.DataMemberAttribute()] - public byte[] X509CertificateAsBinary + private byte[] X509CertificateAsBinary { get { @@ -707,7 +705,7 @@ namespace WebFormsRelyingParty /// </summary> [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute(IsNullable=false)] [global::System.Runtime.Serialization.DataMemberAttribute()] - public int VerificationCodeFormatAsInt + private int VerificationCodeFormatAsInt { get { @@ -1037,15 +1035,13 @@ namespace WebFormsRelyingParty /// <param name="token">Initial value of Token.</param> /// <param name="tokenSecret">Initial value of TokenSecret.</param> /// <param name="createdOn">Initial value of CreatedOn.</param> - /// <param name="consumerVersionAsString">Initial value of ConsumerVersionAsString.</param> - public static IssuedRequestToken CreateIssuedRequestToken(int tokenId, string token, string tokenSecret, global::System.DateTime createdOn, string consumerVersionAsString) + public static IssuedRequestToken CreateIssuedRequestToken(int tokenId, string token, string tokenSecret, global::System.DateTime createdOn) { IssuedRequestToken issuedRequestToken = new IssuedRequestToken(); issuedRequestToken.TokenId = tokenId; issuedRequestToken.Token = token; issuedRequestToken.TokenSecret = tokenSecret; issuedRequestToken.CreatedOn = createdOn; - issuedRequestToken.ConsumerVersionAsString = consumerVersionAsString; return issuedRequestToken; } /// <summary> @@ -1053,7 +1049,7 @@ namespace WebFormsRelyingParty /// </summary> [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute(IsNullable=false)] [global::System.Runtime.Serialization.DataMemberAttribute()] - public string ConsumerVersionAsString + private string ConsumerVersionAsString { get { @@ -1099,7 +1095,7 @@ namespace WebFormsRelyingParty /// </summary> [global::System.Data.Objects.DataClasses.EdmScalarPropertyAttribute()] [global::System.Runtime.Serialization.DataMemberAttribute()] - public string CallbackAsString + private string CallbackAsString { get { diff --git a/projecttemplates/WebFormsRelyingParty/Model.edmx b/projecttemplates/WebFormsRelyingParty/Model.edmx index 7f9603d..f37aa6c 100644 --- a/projecttemplates/WebFormsRelyingParty/Model.edmx +++ b/projecttemplates/WebFormsRelyingParty/Model.edmx @@ -234,9 +234,9 @@ <PropertyRef Name="ConsumerId" /></Key> <Property Name="ConsumerKey" Type="String" Nullable="false" /> <Property Name="ConsumerSecret" Type="String" Nullable="true" /> - <Property Name="X509CertificateAsBinary" Type="Binary" Nullable="true" /> + <Property Name="X509CertificateAsBinary" Type="Binary" Nullable="true" a:SetterAccess="Private" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:GetterAccess="Private" /> <Property Name="CallbackAsString" Type="String" Nullable="true" /> - <Property Name="VerificationCodeFormatAsInt" Type="Int32" Nullable="false" /> + <Property Name="VerificationCodeFormatAsInt" Type="Int32" Nullable="false" a:GetterAccess="Private" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Private" /> <Property Name="VerificationCodeLength" Type="Int32" Nullable="false" /> <Property Name="ConsumerId" Type="Int32" Nullable="false" /> <NavigationProperty Name="IssuedToken" Relationship="DatabaseModel.FK_IssuedToken_Consumer" FromRole="Consumer" ToRole="IssuedTokens" /> @@ -258,9 +258,9 @@ <End Type="DatabaseModel.User" Role="User" Multiplicity="0..1" /> <End Type="DatabaseModel.IssuedToken" Role="IssuedTokens" Multiplicity="*" /></Association> <EntityType Name="IssuedRequestToken" BaseType="DatabaseModel.IssuedToken"> - <Property Name="ConsumerVersionAsString" Type="String" Nullable="false" /> + <Property Name="ConsumerVersionAsString" Type="String" Nullable="false" a:GetterAccess="Private" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Private" /> <Property Name="VerificationCode" Type="String" Nullable="true" /> - <Property Name="CallbackAsString" Type="String" Nullable="true" /></EntityType> + <Property Name="CallbackAsString" Type="String" Nullable="true" a:GetterAccess="Private" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Private" /></EntityType> <EntityType Name="IssuedAccessToken" BaseType="DatabaseModel.IssuedToken"> <Property Name="ExpirationDate" Type="DateTime" Nullable="true" /></EntityType></Schema> </edmx:ConceptualModels> |