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
- ListControl.cs
- EventListener.cs
- SafeEventHandle.cs
- Action.cs
- ExpressionEditorAttribute.cs
- DrawingBrush.cs
- GuidelineSet.cs
- WebPartDisplayMode.cs
- XPathNavigatorKeyComparer.cs
- ActionNotSupportedException.cs
- DesignerWithHeader.cs
- Pts.cs
- FileDetails.cs
- NativeMethods.cs
- ItemList.cs
- ObjectIDGenerator.cs
- SpellerInterop.cs
- ProcessInputEventArgs.cs
- NonDualMessageSecurityOverHttp.cs
- NgenServicingAttributes.cs
- Logging.cs
- DataSourceIDConverter.cs
- HttpCacheVaryByContentEncodings.cs
- SqlServer2KCompatibilityCheck.cs
- SynchronousChannel.cs
- CatalogPartCollection.cs
- ButtonBaseAdapter.cs
- ReachDocumentReferenceCollectionSerializer.cs
- NavigationFailedEventArgs.cs
- WebBrowsableAttribute.cs
- SmtpSection.cs
- TextEditorSelection.cs
- MemberJoinTreeNode.cs
- GenericEnumConverter.cs
- IIS7UserPrincipal.cs
- EdmItemError.cs
- PointHitTestParameters.cs
- DoubleLinkListEnumerator.cs
- ThreadAbortException.cs
- Collection.cs
- AudienceUriMode.cs
- odbcmetadatacollectionnames.cs
- DiffuseMaterial.cs
- _Win32.cs
- PersonalizableAttribute.cs
- DataGridViewAutoSizeModeEventArgs.cs
- NativeMethods.cs
- CompositeScriptReference.cs
- BinaryFormatter.cs
- CompositeFontFamily.cs
- TTSEvent.cs
- PrintDocument.cs
- DropTarget.cs
- ReadContentAsBinaryHelper.cs
- ErrorProvider.cs
- ClassData.cs
- UndoManager.cs
- fixedPageContentExtractor.cs
- DoubleAnimationClockResource.cs
- Menu.cs
- ObjectIDGenerator.cs
- basevalidator.cs
- filewebresponse.cs
- XPathDocumentNavigator.cs
- SynchronizationScope.cs
- TCPClient.cs
- WorkflowFileItem.cs
- EditorZoneDesigner.cs
- PbrsForward.cs
- DocumentViewerHelper.cs
- HtmlTableRowCollection.cs
- PermissionToken.cs
- RouteValueDictionary.cs
- DataServiceContext.cs
- MissingFieldException.cs
- WindowsProgressbar.cs
- UpdateCompiler.cs
- dtdvalidator.cs
- ListViewInsertEventArgs.cs
- ElementProxy.cs
- DocumentViewerBase.cs
- PerfCounterSection.cs
- SafeCoTaskMem.cs
- MatrixTransform3D.cs
- DynamicEndpointElement.cs
- FileNotFoundException.cs
- DelegatingConfigHost.cs
- QuaternionAnimation.cs
- RuleSetReference.cs
- _NegoStream.cs
- NonDualMessageSecurityOverHttp.cs
- DoubleCollectionConverter.cs
- ClientConfigPaths.cs
- ECDsa.cs
- OutOfProcStateClientManager.cs
- MsmqIntegrationSecurityMode.cs
- FormViewRow.cs
- OperationCanceledException.cs
- xmlglyphRunInfo.cs
- ApplicationHost.cs