Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / PropertyEmitterBase.cs / 1 / 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
- FileEnumerator.cs
- EventProviderWriter.cs
- LiteralControl.cs
- SR.cs
- ControlValuePropertyAttribute.cs
- LinqDataSourceUpdateEventArgs.cs
- MenuAutomationPeer.cs
- Double.cs
- DynamicDocumentPaginator.cs
- _SafeNetHandles.cs
- xmlglyphRunInfo.cs
- LassoSelectionBehavior.cs
- ChameleonKey.cs
- EditCommandColumn.cs
- SizeFConverter.cs
- Transform3D.cs
- ComponentFactoryHelpers.cs
- DataPointer.cs
- Win32PrintDialog.cs
- XPathDocumentIterator.cs
- SetStateDesigner.cs
- MultiTargetingUtil.cs
- CommandValueSerializer.cs
- JsonClassDataContract.cs
- Bidi.cs
- KnownBoxes.cs
- Expression.cs
- IxmlLineInfo.cs
- CngKey.cs
- HtmlInputCheckBox.cs
- precedingsibling.cs
- DesigntimeLicenseContext.cs
- TextServicesContext.cs
- LoginUtil.cs
- ShapeTypeface.cs
- StructuredProperty.cs
- ShutDownListener.cs
- GiveFeedbackEventArgs.cs
- unsafeIndexingFilterStream.cs
- DataObject.cs
- AnnotationResourceCollection.cs
- Char.cs
- MessageQueueAccessControlEntry.cs
- TemplateControl.cs
- Util.cs
- ForAllOperator.cs
- WebServiceTypeData.cs
- DataBindingsDialog.cs
- InkCanvasFeedbackAdorner.cs
- SystemMulticastIPAddressInformation.cs
- LineServicesCallbacks.cs
- WriteTimeStream.cs
- WebControlParameterProxy.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- TreeNodeCollection.cs
- HttpGetClientProtocol.cs
- EntitySetDataBindingList.cs
- HTMLTextWriter.cs
- EntityDescriptor.cs
- XamlVector3DCollectionSerializer.cs
- ThicknessAnimationBase.cs
- SignatureDescription.cs
- ComponentEditorPage.cs
- PermissionAttributes.cs
- SQLStringStorage.cs
- UpdateExpressionVisitor.cs
- ButtonField.cs
- ApplicationDirectory.cs
- ZipIOCentralDirectoryBlock.cs
- DiscoveryRequestHandler.cs
- ListViewInsertedEventArgs.cs
- LocalizableAttribute.cs
- RsaSecurityTokenAuthenticator.cs
- SoapProtocolReflector.cs
- ToolstripProfessionalRenderer.cs
- ScrollViewerAutomationPeer.cs
- UserNamePasswordValidationMode.cs
- IItemProperties.cs
- Expander.cs
- ForeignKeyConstraint.cs
- PathFigureCollection.cs
- OAVariantLib.cs
- StringValueConverter.cs
- BooleanKeyFrameCollection.cs
- FloaterParaClient.cs
- HttpCacheVaryByContentEncodings.cs
- HMACRIPEMD160.cs
- Win32Native.cs
- AdapterUtil.cs
- ExceptionHandlers.cs
- ListView.cs
- MessageSmuggler.cs
- CodeMethodInvokeExpression.cs
- TransformerInfoCollection.cs
- BufferedGraphicsContext.cs
- NeutralResourcesLanguageAttribute.cs
- ToolStripLabel.cs
- XmlChildNodes.cs
- SingleObjectCollection.cs
- PrintDialogDesigner.cs