Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / PropertyEmitterBase.cs / 3 / PropertyEmitterBase.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.CodeDom; using System.Collections.Generic; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Data.Entity.Design.SsdlGenerator; using System.Data.Entity.Design.Common; namespace System.Data.EntityModel.Emitters { internal abstract class PropertyEmitterBase : MetadataItemEmitter { private bool _declaringTypeUsesStandardBaseType; protected PropertyEmitterBase(ClientApiGenerator generator, MetadataItem item, bool declaringTypeUsesStandardBaseType) :base(generator, item) { Debug.Assert(item != null, "item is null"); _declaringTypeUsesStandardBaseType = declaringTypeUsesStandardBaseType; } ////// This is where the derived classes supply their emit logic. /// /// The CodeDom representation of the type that the property is being added to. protected abstract void EmitProperty(CodeTypeDeclaration typeDecl); ////// Validation logic specific to property emitters /// protected override void Validate() { VerifyGetterAndSetterAccessibilityCompatability(); Generator.VerifyLanguageCaseSensitiveCompatibilityForProperty(Item as EdmMember); } ////// The compiler ensures accessibility on a Setter/Getter is more restrictive than on the Property. /// However accessibility modifiers are not well ordered. Internal and Protected don't go well together /// because neither is more restrictive than others. /// private void VerifyGetterAndSetterAccessibilityCompatability() { if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Assembly && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Family) { Generator.AddError(System.Data.Entity.Design.Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Internal", "Protected"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error, Item.DeclaringType.FullName, Item.Name); } else if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Family && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Assembly) { Generator.AddError(System.Data.Entity.Design.Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Protected", "Internal"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error, Item.DeclaringType.FullName, Item.Name); } } ////// Main method for Emitting property code. /// /// The CodeDom representation of the type that the property is being added to. public void Emit(CodeTypeDeclaration typeDecl) { Validate(); EmitProperty(typeDecl); } protected bool AncestorClassDefinesName(string name) { if (_declaringTypeUsesStandardBaseType && Utils.DoesTypeReserveMemberName(Item.DeclaringType, name, Generator.LanguageAppropriateStringComparer)) { return true; } StructuralType baseType = Item.DeclaringType.BaseType as StructuralType; if (baseType != null && baseType.Members.Contains(name)) { return true; } return false; } public new EdmMember Item { get { return base.Item as EdmMember; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.CodeDom; using System.Collections.Generic; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Data.Entity.Design.SsdlGenerator; using System.Data.Entity.Design.Common; namespace System.Data.EntityModel.Emitters { internal abstract class PropertyEmitterBase : MetadataItemEmitter { private bool _declaringTypeUsesStandardBaseType; protected PropertyEmitterBase(ClientApiGenerator generator, MetadataItem item, bool declaringTypeUsesStandardBaseType) :base(generator, item) { Debug.Assert(item != null, "item is null"); _declaringTypeUsesStandardBaseType = declaringTypeUsesStandardBaseType; } ////// This is where the derived classes supply their emit logic. /// /// The CodeDom representation of the type that the property is being added to. protected abstract void EmitProperty(CodeTypeDeclaration typeDecl); ////// Validation logic specific to property emitters /// protected override void Validate() { VerifyGetterAndSetterAccessibilityCompatability(); Generator.VerifyLanguageCaseSensitiveCompatibilityForProperty(Item as EdmMember); } ////// The compiler ensures accessibility on a Setter/Getter is more restrictive than on the Property. /// However accessibility modifiers are not well ordered. Internal and Protected don't go well together /// because neither is more restrictive than others. /// private void VerifyGetterAndSetterAccessibilityCompatability() { if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Assembly && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Family) { Generator.AddError(System.Data.Entity.Design.Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Internal", "Protected"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error, Item.DeclaringType.FullName, Item.Name); } else if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Family && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Assembly) { Generator.AddError(System.Data.Entity.Design.Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Protected", "Internal"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error, Item.DeclaringType.FullName, Item.Name); } } ////// Main method for Emitting property code. /// /// The CodeDom representation of the type that the property is being added to. public void Emit(CodeTypeDeclaration typeDecl) { Validate(); EmitProperty(typeDecl); } protected bool AncestorClassDefinesName(string name) { if (_declaringTypeUsesStandardBaseType && Utils.DoesTypeReserveMemberName(Item.DeclaringType, name, Generator.LanguageAppropriateStringComparer)) { return true; } StructuralType baseType = Item.DeclaringType.BaseType as StructuralType; if (baseType != null && baseType.Members.Contains(name)) { return true; } return false; } public new EdmMember Item { get { return base.Item as EdmMember; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectionsCancelVerb.cs
- NumberSubstitution.cs
- WindowsListView.cs
- MethodAccessException.cs
- LicenseProviderAttribute.cs
- Stylus.cs
- IncomingWebResponseContext.cs
- XmlChildEnumerator.cs
- ColumnResult.cs
- CapabilitiesUse.cs
- DrawingCollection.cs
- DbConnectionPoolGroupProviderInfo.cs
- InheritablePropertyChangeInfo.cs
- ToolStripDropDownButton.cs
- Geometry3D.cs
- PasswordDeriveBytes.cs
- GlyphInfoList.cs
- PagesChangedEventArgs.cs
- Constants.cs
- List.cs
- TransformCryptoHandle.cs
- Line.cs
- BadImageFormatException.cs
- ObjectListCommandCollection.cs
- XmlSchema.cs
- altserialization.cs
- XPathDocumentIterator.cs
- TableRow.cs
- LinearGradientBrush.cs
- FixedTextBuilder.cs
- DateTimeOffsetConverter.cs
- InputScopeNameConverter.cs
- ApplicationManager.cs
- MDIClient.cs
- AlgoModule.cs
- WindowsListViewItemStartMenu.cs
- WebEncodingValidator.cs
- RouteCollection.cs
- SkinBuilder.cs
- xmlfixedPageInfo.cs
- Crypto.cs
- ReadContentAsBinaryHelper.cs
- EventLogPermissionEntryCollection.cs
- DependencyPropertyChangedEventArgs.cs
- Connector.cs
- ObjectSet.cs
- Glyph.cs
- TableSectionStyle.cs
- _emptywebproxy.cs
- AttributeParameterInfo.cs
- TypeElementCollection.cs
- ArgumentNullException.cs
- CollectionType.cs
- ClientSettingsStore.cs
- CompressStream.cs
- TextChangedEventArgs.cs
- ConfigurationManagerHelper.cs
- RelationshipConstraintValidator.cs
- NativeBuffer.cs
- SymmetricKeyWrap.cs
- SystemIcmpV4Statistics.cs
- CodeTypeReferenceExpression.cs
- HttpHeaderCollection.cs
- SerializationObjectManager.cs
- ScaleTransform.cs
- BindingBase.cs
- PackageRelationshipCollection.cs
- XsdBuildProvider.cs
- PropertyReferenceSerializer.cs
- DataControlButton.cs
- Char.cs
- EFColumnProvider.cs
- VectorCollectionConverter.cs
- NaturalLanguageHyphenator.cs
- DataGridViewCellStyleChangedEventArgs.cs
- XmlLoader.cs
- Blend.cs
- NotConverter.cs
- ReliabilityContractAttribute.cs
- MeasureItemEvent.cs
- DataTablePropertyDescriptor.cs
- XmlAnyAttributeAttribute.cs
- SafeRegistryKey.cs
- Transform.cs
- DbDataRecord.cs
- ReverseComparer.cs
- PriorityItem.cs
- InkPresenterAutomationPeer.cs
- MemberBinding.cs
- ToolBarPanel.cs
- BamlReader.cs
- bindurihelper.cs
- SimpleHandlerFactory.cs
- HtmlTableCell.cs
- DataExpression.cs
- AuthenticationService.cs
- _RequestLifetimeSetter.cs
- EncryptedHeader.cs
- TokenizerHelper.cs
- Dictionary.cs