Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Metadata / Edm / StructuralType.cs / 1305376 / StructuralType.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Diagnostics; using System.Data.Common; using System.Text; namespace System.Data.Metadata.Edm { ////// Represents the Structural Type /// public abstract class StructuralType : EdmType { #region Constructors ////// Internal parameterless constructor for bootstrapping edmtypes /// internal StructuralType() { _members = new MemberCollection(this); _readOnlyMembers = _members.AsReadOnlyMetadataCollection(); } ////// Initializes a new instance of Structural Type with the given members /// /// name of the structural type /// namespace of the structural type /// version of the structural type /// dataSpace in which this edmtype belongs to ///Thrown if either name, namespace or version arguments are null internal StructuralType(string name, string namespaceName, DataSpace dataSpace) : base(name, namespaceName, dataSpace) { _members = new MemberCollection(this); _readOnlyMembers = _members.AsReadOnlyMetadataCollection(); } #endregion #region Fields private readonly MemberCollection _members; private readonly ReadOnlyMetadataCollection_readOnlyMembers; #endregion #region Properties /// /// Returns the collection of members. /// [MetadataProperty(BuiltInTypeKind.EdmMember, true)] public ReadOnlyMetadataCollectionMembers { get { return _readOnlyMembers; } } #endregion #region Methods /// /// Get the declared only members of a particular type /// internal ReadOnlyMetadataCollectionGetDeclaredOnlyMembers () where T : EdmMember { return _members.GetDeclaredOnlyMembers (); } /// /// Validates the types and sets the readOnly property to true. Once the type is set to readOnly, /// it can never be changed. /// internal override void SetReadOnly() { if (!IsReadOnly) { base.SetReadOnly(); this.Members.Source.SetReadOnly(); } } ////// Validates a EdmMember object to determine if it can be added to this type's /// Members collection. If this method returns without throwing, it is assumed /// the member is valid. /// /// The member to validate internal abstract void ValidateMemberForAdd(EdmMember member); ////// Adds a member to this type /// /// The member to add internal void AddMember(EdmMember member) { EntityUtil.GenericCheckArgumentNull(member, "member"); Util.ThrowIfReadOnly(this); Debug.Assert(this.DataSpace == member.TypeUsage.EdmType.DataSpace || this.BuiltInTypeKind == BuiltInTypeKind.RowType, "Wrong member type getting added in structural type"); //Since we set the DataSpace of the RowType to be -1 in the constructor, we need to initialize it //as and when we add members to it if (BuiltInTypeKind.RowType == this.BuiltInTypeKind) { // Do this only when you are adding the first member if (_members.Count == 0) { this.DataSpace = member.TypeUsage.EdmType.DataSpace; } // We need to build types that span across more than one space. For such row types, we set the // DataSpace to -1 else if (this.DataSpace != (DataSpace)(-1) && member.TypeUsage.EdmType.DataSpace != this.DataSpace) { this.DataSpace = (DataSpace)(-1); } } this._members.Add(member); } #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
- HitTestWithPointDrawingContextWalker.cs
- externdll.cs
- GetWinFXPath.cs
- GenerateTemporaryTargetAssembly.cs
- SaveFileDialog.cs
- ContextStaticAttribute.cs
- WindowsIPAddress.cs
- FillErrorEventArgs.cs
- WindowClosedEventArgs.cs
- TemplateNameScope.cs
- XmlCompatibilityReader.cs
- PathFigure.cs
- WebScriptMetadataMessage.cs
- OwnerDrawPropertyBag.cs
- DataGridViewCellParsingEventArgs.cs
- MediaPlayerState.cs
- SqlConnectionFactory.cs
- OrderedEnumerableRowCollection.cs
- GeometryValueSerializer.cs
- PositiveTimeSpanValidator.cs
- ServiceOperation.cs
- CodePageUtils.cs
- SafeCoTaskMem.cs
- SpoolingTask.cs
- UnsafeNativeMethods.cs
- CodeTypeMemberCollection.cs
- While.cs
- SystemColors.cs
- XmlSchemaIdentityConstraint.cs
- DrawingServices.cs
- XPathSelectionIterator.cs
- RtfFormatStack.cs
- XmlNodeComparer.cs
- XmlSchemaNotation.cs
- WebScriptEnablingBehavior.cs
- PropertySegmentSerializer.cs
- SQLDoubleStorage.cs
- StorageScalarPropertyMapping.cs
- CngKey.cs
- WebPartZoneBase.cs
- ViewManager.cs
- Cloud.cs
- FtpWebResponse.cs
- ManagementObject.cs
- Random.cs
- WebPartPersonalization.cs
- CollectionViewProxy.cs
- StringBlob.cs
- XmlSerializerFaultFormatter.cs
- LocatorPartList.cs
- TreeNodeMouseHoverEvent.cs
- NumericUpDown.cs
- wgx_exports.cs
- IPAddressCollection.cs
- DesignerDataTable.cs
- ArrangedElement.cs
- RoleService.cs
- SHA256Cng.cs
- GridViewPageEventArgs.cs
- QilExpression.cs
- DBSchemaRow.cs
- SystemParameters.cs
- TouchDevice.cs
- BrowserDefinitionCollection.cs
- SessionSwitchEventArgs.cs
- ErrorProvider.cs
- TransformConverter.cs
- sitestring.cs
- Parser.cs
- StickyNoteAnnotations.cs
- TypeListConverter.cs
- ToolStripPanelRenderEventArgs.cs
- CompletedAsyncResult.cs
- XmlSchemaGroup.cs
- ResXFileRef.cs
- XmlAttributeCache.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- DefaultParameterValueAttribute.cs
- EnvelopeVersion.cs
- SurrogateSelector.cs
- Registration.cs
- TreeNodeCollectionEditor.cs
- RegistryConfigurationProvider.cs
- DivideByZeroException.cs
- DependencyPropertyValueSerializer.cs
- LogStore.cs
- DataServiceQueryProvider.cs
- codemethodreferenceexpression.cs
- TableRowGroup.cs
- FontWeight.cs
- DnsPermission.cs
- Dynamic.cs
- SingleStorage.cs
- TextMetrics.cs
- DataControlPagerLinkButton.cs
- PopupEventArgs.cs
- CodeAssignStatement.cs
- XmlNotation.cs
- WinInet.cs
- OleDbSchemaGuid.cs