Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntityDesign / Design / System / Data / EntityModel / Emitters / SchemaTypeEmitter.cs / 2 / SchemaTypeEmitter.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.CodeDom; using System.Data.EntityModel.SchemaObjectModel; using Som = System.Data.EntityModel.SchemaObjectModel; using System.Data.Metadata.Edm; using System.Reflection; using System.Diagnostics; using System.Collections.Generic; using System.Data.Entity.Design; using System.Data.Entity.Design.SsdlGenerator; 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; using System.CodeDom; using System.Data.EntityModel.SchemaObjectModel; using Som = System.Data.EntityModel.SchemaObjectModel; using System.Data.Metadata.Edm; using System.Reflection; using System.Diagnostics; using System.Collections.Generic; using System.Data.Entity.Design; using System.Data.Entity.Design.SsdlGenerator; 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
- KeyedHashAlgorithm.cs
- _FixedSizeReader.cs
- XNodeValidator.cs
- Expression.cs
- ClonableStack.cs
- HostedAspNetEnvironment.cs
- ObjectComplexPropertyMapping.cs
- ParameterReplacerVisitor.cs
- DataGridViewRowHeaderCell.cs
- CategoryEditor.cs
- ConfigurationFileMap.cs
- DataServiceResponse.cs
- SecurityUtils.cs
- RelatedView.cs
- ImmutablePropertyDescriptorGridEntry.cs
- DbConnectionFactory.cs
- KeyboardEventArgs.cs
- hwndwrapper.cs
- EffectiveValueEntry.cs
- ToolStripContentPanel.cs
- HttpCapabilitiesSectionHandler.cs
- TextBoxBaseDesigner.cs
- XmlRawWriterWrapper.cs
- BasicKeyConstraint.cs
- SafeSystemMetrics.cs
- DbConnectionOptions.cs
- ConditionalBranch.cs
- MatrixStack.cs
- Renderer.cs
- ChildDocumentBlock.cs
- NavigationProperty.cs
- TextBreakpoint.cs
- Utils.cs
- HttpRequest.cs
- SqlFunctions.cs
- Win32SafeHandles.cs
- DataKeyArray.cs
- BamlRecords.cs
- DataGridCell.cs
- TdsEnums.cs
- XmlSchemaSimpleTypeRestriction.cs
- VirtualDirectoryMappingCollection.cs
- PageThemeBuildProvider.cs
- DiffuseMaterial.cs
- DataGridRelationshipRow.cs
- SortAction.cs
- DataGridViewAutoSizeModeEventArgs.cs
- XmlValidatingReader.cs
- ContentPropertyAttribute.cs
- SelectionGlyphBase.cs
- RequestChannel.cs
- EnterpriseServicesHelper.cs
- Pkcs7Recipient.cs
- querybuilder.cs
- ProcessRequestArgs.cs
- PropertyStore.cs
- FontEmbeddingManager.cs
- StrongNameIdentityPermission.cs
- ImageSource.cs
- DBSchemaTable.cs
- WebPartConnectionsDisconnectVerb.cs
- OperationCanceledException.cs
- RegexInterpreter.cs
- QilInvokeEarlyBound.cs
- SqlInfoMessageEvent.cs
- DataDesignUtil.cs
- EmbossBitmapEffect.cs
- Script.cs
- FileDialog_Vista.cs
- XamlVector3DCollectionSerializer.cs
- NotifyParentPropertyAttribute.cs
- OleDbConnectionInternal.cs
- Trace.cs
- ModuleBuilder.cs
- HttpRequest.cs
- WebPartExportVerb.cs
- MetadataProperty.cs
- invalidudtexception.cs
- CodeThrowExceptionStatement.cs
- CompiledAction.cs
- ListViewItem.cs
- OrderByLifter.cs
- exports.cs
- ImageButton.cs
- GifBitmapDecoder.cs
- ValueType.cs
- DesignerForm.cs
- FixedHighlight.cs
- FrameworkName.cs
- DataGridViewLinkColumn.cs
- PropertyEmitterBase.cs
- PathData.cs
- SQLBinary.cs
- HwndTarget.cs
- TracedNativeMethods.cs
- InvalidFilterCriteriaException.cs
- SqlXml.cs
- AsnEncodedData.cs
- Constraint.cs
- ListViewDeleteEventArgs.cs