Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / TypeDefinition.cs / 1305376 / TypeDefinition.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents an ast node for a collection type definition. /// internal sealed class CollectionTypeDefinition : Node { private readonly Node _elementTypeDef; ////// Initializes collection type definition using the element type definition. /// internal CollectionTypeDefinition(Node elementTypeDef) { this._elementTypeDef = elementTypeDef; } ////// Returns collection element type defintion. /// internal Node ElementTypeDef { get { return this._elementTypeDef; } } } ////// Represents an ast node for a reference type definition. /// internal sealed class RefTypeDefinition : Node { private readonly Node _refTypeIdentifier; ////// Initializes reference type definition using the referenced type identifier. /// internal RefTypeDefinition(Node refTypeIdentifier) { this._refTypeIdentifier = refTypeIdentifier; } ////// Returns referenced type identifier. /// internal Node RefTypeIdentifier { get { return this._refTypeIdentifier; } } } ////// Represents an ast node for a row type definition. /// internal sealed class RowTypeDefinition : Node { private readonly NodeList_propDefList; /// /// Initializes row type definition using the property definitions. /// internal RowTypeDefinition(NodeListpropDefList) { this._propDefList = propDefList; } /// /// Returns property definitions. /// internal NodeListProperties { get { return this._propDefList; } } } /// /// Represents an ast node for a property definition (name/type) /// internal sealed class PropDefinition : Node { private readonly Identifier _name; private readonly Node _typeDefExpr; ////// Initializes property definition using the name and the type definition. /// /// internal PropDefinition(Identifier name, Node typeDefExpr) { this._name = name; this._typeDefExpr = typeDefExpr; } ////// Returns property name. /// internal Identifier Name { get { return this._name; } } ////// Returns property type. /// internal Node Type { get { return this._typeDefExpr; } } } } // 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
- tabpagecollectioneditor.cs
- SQLStringStorage.cs
- OleDbFactory.cs
- CombinedTcpChannel.cs
- SharedUtils.cs
- SchemaDeclBase.cs
- SimpleApplicationHost.cs
- OutputWindow.cs
- RightsManagementInformation.cs
- Stroke2.cs
- QuarticEase.cs
- GridErrorDlg.cs
- Int16Storage.cs
- CatalogZone.cs
- DesignBindingPicker.cs
- QilValidationVisitor.cs
- _UncName.cs
- TreePrinter.cs
- HashHelpers.cs
- SecurityDocument.cs
- ColorAnimationBase.cs
- ThemeConfigurationDialog.cs
- WindowsListViewItem.cs
- KeyGestureValueSerializer.cs
- SqlAggregateChecker.cs
- SymbolTable.cs
- ProfileSettings.cs
- GridViewColumnHeaderAutomationPeer.cs
- LiteralControl.cs
- RadioButtonPopupAdapter.cs
- MethodToken.cs
- AtomContentProperty.cs
- XmlCharType.cs
- ListViewItemEventArgs.cs
- StylusPointCollection.cs
- TypeCollectionPropertyEditor.cs
- OutputBuffer.cs
- Axis.cs
- Base64Stream.cs
- ProgressBarHighlightConverter.cs
- VersionedStream.cs
- Simplifier.cs
- XmlHierarchicalEnumerable.cs
- HMACSHA512.cs
- Brushes.cs
- ListComponentEditorPage.cs
- RepeatInfo.cs
- RSAPKCS1SignatureFormatter.cs
- TransformerInfo.cs
- DoubleLink.cs
- InkSerializer.cs
- TargetControlTypeAttribute.cs
- BulletedListDesigner.cs
- ErrorTableItemStyle.cs
- SQLInt32Storage.cs
- ResizeGrip.cs
- AttributeData.cs
- JapaneseLunisolarCalendar.cs
- HttpListenerContext.cs
- OleDbRowUpdatedEvent.cs
- ColumnClickEvent.cs
- RenderOptions.cs
- WindowsFormsSectionHandler.cs
- ServerType.cs
- SortedList.cs
- DesignerLoader.cs
- RequestCache.cs
- PrincipalPermission.cs
- PackWebResponse.cs
- ImageAttributes.cs
- LayoutInformation.cs
- CalendarDesigner.cs
- SerializationInfoEnumerator.cs
- StorageScalarPropertyMapping.cs
- CaseInsensitiveComparer.cs
- MessageSecurityTokenVersion.cs
- OdbcError.cs
- SettingsBase.cs
- AggregateNode.cs
- StringArrayConverter.cs
- DelegatingStream.cs
- SqlMethods.cs
- WhitespaceSignificantCollectionAttribute.cs
- TemplateBuilder.cs
- IpcChannelHelper.cs
- BooleanSwitch.cs
- ReachObjectContext.cs
- Timeline.cs
- ApplicationTrust.cs
- UserPersonalizationStateInfo.cs
- Transactions.cs
- DecoderExceptionFallback.cs
- RuntimeIdentifierPropertyAttribute.cs
- CodeTypeOfExpression.cs
- ConditionalExpression.cs
- SessionStateItemCollection.cs
- TextDecoration.cs
- HyperLinkStyle.cs
- SQLMoneyStorage.cs
- PersonalizationStateInfoCollection.cs