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 / SchemaTypeEmitter.cs / 1 / SchemaTypeEmitter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.CodeDom; using System.Collections.Generic; using System.Data.Services.Design; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Reflection; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class SchemaTypeEmitter : MetadataItemEmitter { #region Public Methods public abstract CodeTypeDeclarationCollection EmitApiClass(); #endregion #region Protected Methods ////// /// /// /// protected SchemaTypeEmitter(ClientApiGenerator generator, MetadataItem item) : base(generator, item) { } ////// /// /// protected virtual void EmitTypeAttributes( CodeTypeDeclaration typeDecl ) { Generator.AttributeEmitter.EmitTypeAttributes( this, typeDecl ); } ////// Emitter-specific validation: for SchemaTypeEmitter-derived classes, we /// check the EdmItemCollection for other entities that have the same name /// but differ in case /// protected override void Validate() { Generator.VerifyLanguageCaseSensitiveCompatibilityForType(Item); } ////// Add attributes to a type's CustomAttributes collection /// /// The name of the type /// The type to annotate /// The additional attributes protected void EmitTypeAttributes(string itemName, CodeTypeDeclaration typeDecl, ListadditionalAttributes) { if (additionalAttributes != null && additionalAttributes.Count > 0) { try { typeDecl.CustomAttributes.AddRange(additionalAttributes.ToArray()); } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidAttributeSuppliedForType(itemName), ModelBuilderErrorCode.InvalidAttributeSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } EmitTypeAttributes(typeDecl); } /// /// Add interfaces to the type's list of BaseTypes /// /// The name of the type /// The type whose list of base types needs to be extended /// The interfaces to add to the list of base types protected void AddInterfaces(string itemName, CodeTypeDeclaration typeDecl, ListadditionalInterfaces) { if (additionalInterfaces != null) { try { foreach (Type interfaceType in additionalInterfaces) { typeDecl.BaseTypes.Add(new CodeTypeReference(interfaceType)); } } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidInterfaceSuppliedForType(itemName), ModelBuilderErrorCode.InvalidInterfaceSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } } /// /// Add interfaces to the type's list of BaseTypes /// /// The name of the type /// The type to which members need to be added /// The members to add protected void AddMembers(string itemName, CodeTypeDeclaration typeDecl, ListadditionalMembers) { if (additionalMembers != null && additionalMembers.Count > 0) { try { typeDecl.Members.AddRange(additionalMembers.ToArray()); } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidMemberSuppliedForType(itemName), ModelBuilderErrorCode.InvalidMemberSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } } #endregion #region Protected Properties /// /// Gets the element that code is being emitted for. /// internal new GlobalItem Item { get { return base.Item as GlobalItem; } } internal void SetTypeVisibility(CodeTypeDeclaration typeDecl) { typeDecl.TypeAttributes &= ~System.Reflection.TypeAttributes.VisibilityMask; typeDecl.TypeAttributes |= GetTypeAccessibilityValue(Item); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.CodeDom; using System.Collections.Generic; using System.Data.Services.Design; using System.Data.Metadata.Edm; using System.Diagnostics; using System.Reflection; namespace System.Data.EntityModel.Emitters { ////// /// internal abstract class SchemaTypeEmitter : MetadataItemEmitter { #region Public Methods public abstract CodeTypeDeclarationCollection EmitApiClass(); #endregion #region Protected Methods ////// /// /// /// protected SchemaTypeEmitter(ClientApiGenerator generator, MetadataItem item) : base(generator, item) { } ////// /// /// protected virtual void EmitTypeAttributes( CodeTypeDeclaration typeDecl ) { Generator.AttributeEmitter.EmitTypeAttributes( this, typeDecl ); } ////// Emitter-specific validation: for SchemaTypeEmitter-derived classes, we /// check the EdmItemCollection for other entities that have the same name /// but differ in case /// protected override void Validate() { Generator.VerifyLanguageCaseSensitiveCompatibilityForType(Item); } ////// Add attributes to a type's CustomAttributes collection /// /// The name of the type /// The type to annotate /// The additional attributes protected void EmitTypeAttributes(string itemName, CodeTypeDeclaration typeDecl, ListadditionalAttributes) { if (additionalAttributes != null && additionalAttributes.Count > 0) { try { typeDecl.CustomAttributes.AddRange(additionalAttributes.ToArray()); } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidAttributeSuppliedForType(itemName), ModelBuilderErrorCode.InvalidAttributeSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } EmitTypeAttributes(typeDecl); } /// /// Add interfaces to the type's list of BaseTypes /// /// The name of the type /// The type whose list of base types needs to be extended /// The interfaces to add to the list of base types protected void AddInterfaces(string itemName, CodeTypeDeclaration typeDecl, ListadditionalInterfaces) { if (additionalInterfaces != null) { try { foreach (Type interfaceType in additionalInterfaces) { typeDecl.BaseTypes.Add(new CodeTypeReference(interfaceType)); } } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidInterfaceSuppliedForType(itemName), ModelBuilderErrorCode.InvalidInterfaceSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } } /// /// Add interfaces to the type's list of BaseTypes /// /// The name of the type /// The type to which members need to be added /// The members to add protected void AddMembers(string itemName, CodeTypeDeclaration typeDecl, ListadditionalMembers) { if (additionalMembers != null && additionalMembers.Count > 0) { try { typeDecl.Members.AddRange(additionalMembers.ToArray()); } catch (ArgumentNullException e) { Generator.AddError(Strings.InvalidMemberSuppliedForType(itemName), ModelBuilderErrorCode.InvalidMemberSuppliedForType, EdmSchemaErrorSeverity.Error, e); } } } #endregion #region Protected Properties /// /// Gets the element that code is being emitted for. /// internal new GlobalItem Item { get { return base.Item as GlobalItem; } } internal void SetTypeVisibility(CodeTypeDeclaration typeDecl) { typeDecl.TypeAttributes &= ~System.Reflection.TypeAttributes.VisibilityMask; typeDecl.TypeAttributes |= GetTypeAccessibilityValue(Item); } #endregion } } // 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
- TdsParserSessionPool.cs
- TextContainerChangeEventArgs.cs
- DropSourceBehavior.cs
- FixedLineResult.cs
- UnmanagedMemoryStreamWrapper.cs
- ListDesigner.cs
- SerializationIncompleteException.cs
- Funcletizer.cs
- DataGridItemEventArgs.cs
- SBCSCodePageEncoding.cs
- FieldToken.cs
- EdmProperty.cs
- entityreference_tresulttype.cs
- DataSourceDescriptorCollection.cs
- WindowsTokenRoleProvider.cs
- DbConnectionOptions.cs
- FigureParagraph.cs
- BindingListCollectionView.cs
- SpecialFolderEnumConverter.cs
- XmlAttributeAttribute.cs
- DataObjectPastingEventArgs.cs
- DeriveBytes.cs
- ClickablePoint.cs
- PointAnimationUsingKeyFrames.cs
- StringResourceManager.cs
- RoleGroupCollection.cs
- GridViewEditEventArgs.cs
- CreateUserErrorEventArgs.cs
- ProfileSettings.cs
- Int32KeyFrameCollection.cs
- SessionIDManager.cs
- Int32CollectionValueSerializer.cs
- CellParaClient.cs
- DataBinder.cs
- VerificationAttribute.cs
- ModelPropertyCollectionImpl.cs
- SubtreeProcessor.cs
- ObjectDataSourceDisposingEventArgs.cs
- ProcessInputEventArgs.cs
- _CommandStream.cs
- ComplexObject.cs
- UserMapPath.cs
- SafeViewOfFileHandle.cs
- XmlDataSource.cs
- WizardPanel.cs
- ControlCollection.cs
- FaultFormatter.cs
- DBConcurrencyException.cs
- IPHostEntry.cs
- updatecommandorderer.cs
- GeometryCollection.cs
- SqlFunctionAttribute.cs
- EventHandlerList.cs
- ServerValidateEventArgs.cs
- ResourceReferenceKeyNotFoundException.cs
- UnsafeNativeMethodsTablet.cs
- WsatStrings.cs
- SqlSelectStatement.cs
- LogFlushAsyncResult.cs
- MultiBindingExpression.cs
- FlowDocumentView.cs
- Enumerable.cs
- NegatedConstant.cs
- UnhandledExceptionEventArgs.cs
- ConditionalAttribute.cs
- SqlDuplicator.cs
- TextRunTypographyProperties.cs
- BinaryMethodMessage.cs
- XmlUrlEditor.cs
- httpstaticobjectscollection.cs
- HttpConfigurationContext.cs
- Thumb.cs
- OperationDescriptionCollection.cs
- querybuilder.cs
- OrderedDictionary.cs
- Geometry.cs
- NotCondition.cs
- UserNameSecurityTokenAuthenticator.cs
- ListChunk.cs
- Merger.cs
- GridToolTip.cs
- CommonProperties.cs
- RelationshipNavigation.cs
- DesignerCalendarAdapter.cs
- InputBinder.cs
- DrawingVisual.cs
- ContextMenuService.cs
- TypeDelegator.cs
- CodeArrayIndexerExpression.cs
- Profiler.cs
- LocalizableResourceBuilder.cs
- TransactionFlowAttribute.cs
- HandlerFactoryWrapper.cs
- ProfileGroupSettingsCollection.cs
- PropertyInfo.cs
- TemplatePropertyEntry.cs
- RotateTransform3D.cs
- HttpResponseHeader.cs
- PartialClassGenerationTaskInternal.cs
- FileDialogCustomPlace.cs