Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / 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.Data.Services.Design; using System.Diagnostics; 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(Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Internal", "Protected"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error); } else if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Family && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Assembly) { Generator.AddError(Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Protected", "Internal"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error); } } ////// 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.Data.Services.Design; using System.Diagnostics; 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(Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Internal", "Protected"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error); } else if (PropertyEmitter.GetGetterAccessibility(Item) == MemberAttributes.Family && PropertyEmitter.GetSetterAccessibility(Item) == MemberAttributes.Assembly) { Generator.AddError(Strings.GeneratedPropertyAccessibilityConflict(Item.Name, "Protected", "Internal"), ModelBuilderErrorCode.GeneratedPropertyAccessibilityConflict, EdmSchemaErrorSeverity.Error); } } ////// 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
- addressfiltermode.cs
- StorageInfo.cs
- DataSourceProvider.cs
- VisualStyleRenderer.cs
- RuntimeHelpers.cs
- PeerCollaboration.cs
- ClaimTypeRequirement.cs
- XmlSchemaComplexType.cs
- unsafeIndexingFilterStream.cs
- ConnectionPoint.cs
- MethodToken.cs
- EventManager.cs
- ManagedFilter.cs
- GradientStop.cs
- Stack.cs
- UserMapPath.cs
- CounterSample.cs
- UpWmlMobileTextWriter.cs
- ValidatingPropertiesEventArgs.cs
- HashStream.cs
- AppDomainFactory.cs
- CodeArrayIndexerExpression.cs
- Instrumentation.cs
- CapabilitiesRule.cs
- NonBatchDirectoryCompiler.cs
- ToggleProviderWrapper.cs
- MissingFieldException.cs
- DynamicPropertyReader.cs
- RuntimeVariableList.cs
- Comparer.cs
- DataSourceSelectArguments.cs
- _IPv4Address.cs
- SystemBrushes.cs
- TreeNodeMouseHoverEvent.cs
- DataBoundControlHelper.cs
- RadioButtonList.cs
- StartUpEventArgs.cs
- BitmapEncoder.cs
- DataKey.cs
- XmlSchemaComplexContent.cs
- HelpProvider.cs
- PolicyException.cs
- SqlSupersetValidator.cs
- ProfileEventArgs.cs
- ParallelDesigner.cs
- TextTreeTextBlock.cs
- FormattedText.cs
- OdbcConnectionString.cs
- MasterPageCodeDomTreeGenerator.cs
- GenerateHelper.cs
- TraceUtils.cs
- ThrowHelper.cs
- DrawingBrush.cs
- XmlDataSourceNodeDescriptor.cs
- RegistryKey.cs
- XXXInfos.cs
- ExpressionBindingCollection.cs
- EpmSourcePathSegment.cs
- FormsAuthenticationTicket.cs
- X509RawDataKeyIdentifierClause.cs
- ClientRuntimeConfig.cs
- UnknownBitmapEncoder.cs
- StylusPointPropertyUnit.cs
- ApplicationProxyInternal.cs
- LedgerEntryCollection.cs
- _SecureChannel.cs
- RuleRef.cs
- DebuggerAttributes.cs
- AsyncOperation.cs
- IResourceProvider.cs
- LocalValueEnumerator.cs
- WindowsListViewScroll.cs
- DataControlCommands.cs
- Region.cs
- WindowsToolbar.cs
- MessagingDescriptionAttribute.cs
- RegexParser.cs
- XmlSchemaInclude.cs
- MetadataSource.cs
- SecurityDocument.cs
- DataGridViewCellLinkedList.cs
- ResourceSetExpression.cs
- Utilities.cs
- ShaperBuffers.cs
- ToolStripPanelRenderEventArgs.cs
- DoubleLinkListEnumerator.cs
- XmlSchemaDocumentation.cs
- DesignerTransaction.cs
- ClientSettingsStore.cs
- FileUtil.cs
- DataFieldEditor.cs
- ThreadStartException.cs
- XmlSerializableWriter.cs
- StringDictionaryEditor.cs
- DataGridViewComboBoxCell.cs
- XPathNavigator.cs
- bindurihelper.cs
- DocumentReference.cs
- CacheOutputQuery.cs
- QueryLifecycle.cs