Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / 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.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
- ViewManager.cs
- XmlLangPropertyAttribute.cs
- GcHandle.cs
- OptionalMessageQuery.cs
- XmlReader.cs
- DataBinding.cs
- TextTrailingWordEllipsis.cs
- TextLine.cs
- PageCatalogPart.cs
- ToolStripRendererSwitcher.cs
- TypeSystem.cs
- MetadataStore.cs
- __Filters.cs
- MetadataSource.cs
- NotifyCollectionChangedEventArgs.cs
- comcontractssection.cs
- SqlDataSourceSelectingEventArgs.cs
- DocumentSchemaValidator.cs
- BindingBase.cs
- SystemSounds.cs
- XamlToRtfWriter.cs
- CasesDictionary.cs
- PathHelper.cs
- EpmSourcePathSegment.cs
- InputScopeConverter.cs
- DataSourceXmlElementAttribute.cs
- AssemblyContextControlItem.cs
- BindStream.cs
- LocalizabilityAttribute.cs
- KeyboardEventArgs.cs
- FormsAuthentication.cs
- ThrowOnMultipleAssignment.cs
- ProcessHostFactoryHelper.cs
- EdmSchemaAttribute.cs
- GcHandle.cs
- ShaderEffect.cs
- WinEventWrap.cs
- PropertyEntry.cs
- XsdDateTime.cs
- AssemblyUtil.cs
- DbParameterCollection.cs
- ScriptingProfileServiceSection.cs
- DecimalAverageAggregationOperator.cs
- ColumnResult.cs
- Form.cs
- MenuCommand.cs
- GrammarBuilderWildcard.cs
- DesignTimeSiteMapProvider.cs
- MetabaseReader.cs
- SchemaEntity.cs
- SqlClientMetaDataCollectionNames.cs
- SmiConnection.cs
- DummyDataSource.cs
- UpdatePanelTriggerCollection.cs
- MultipleViewProviderWrapper.cs
- HTMLTagNameToTypeMapper.cs
- BlobPersonalizationState.cs
- OdbcStatementHandle.cs
- GatewayDefinition.cs
- CompiledXpathExpr.cs
- PackagePartCollection.cs
- RegexRunner.cs
- ListControl.cs
- SiteMapPath.cs
- ValidationHelpers.cs
- BitmapEffectGroup.cs
- EntityDataSourceReferenceGroup.cs
- DynamicDocumentPaginator.cs
- NullableLongAverageAggregationOperator.cs
- WebConfigurationFileMap.cs
- DataSourceCache.cs
- Decorator.cs
- RemotingAttributes.cs
- LocationFactory.cs
- Region.cs
- BindingUtils.cs
- SelectionRangeConverter.cs
- TargetControlTypeAttribute.cs
- DocumentXPathNavigator.cs
- DbProviderFactory.cs
- DropSourceBehavior.cs
- Panel.cs
- CapacityStreamGeometryContext.cs
- Run.cs
- CorrelationScope.cs
- ListControlBoundActionList.cs
- XmlTextReaderImpl.cs
- C14NUtil.cs
- SchemaType.cs
- RelatedImageListAttribute.cs
- CanonicalXml.cs
- AuthenticatedStream.cs
- smtpconnection.cs
- WebPartConnectionsConfigureVerb.cs
- RandomNumberGenerator.cs
- PartialArray.cs
- DetailsViewPageEventArgs.cs
- SapiAttributeParser.cs
- MimeTypeMapper.cs
- PackageDigitalSignatureManager.cs