Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / Epm / EpmSourcePathSegment.cs / 1305376 / EpmSourcePathSegment.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Type describing each node in the EpmSourceTree generated using // EntityPropertyMappingAttributes for a ResourceType. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Common { using System.Collections.Generic; ////// Representation of each node in the internal class EpmSourcePathSegment { #region Fields ////// Name of the property under the parent resource type private String propertyName; ///List of sub-properties if this segment corresponds to a complex type private ListsubProperties; #endregion /// /// Constructor creates a source path segment with the name set to /// Segment property name internal EpmSourcePathSegment(String propertyName) { this.propertyName = propertyName; this.subProperties = new List/// (); } #region Properties /// Name of the property under the parent resource type internal String PropertyName { get { return this.propertyName; } } ///List of sub-properties if this segment corresponds to a complex type internal ListSubProperties { get { return this.subProperties; } } /// Corresponding EntityPropertyMappingInfo internal EntityPropertyMappingInfo EpmInfo { get; set; } #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
- AssociatedControlConverter.cs
- XmlDataFileEditor.cs
- ExpandCollapsePattern.cs
- EventLogPermissionEntry.cs
- ParameterModifier.cs
- __Filters.cs
- AssemblyInfo.cs
- UnionCodeGroup.cs
- Decimal.cs
- Int64AnimationUsingKeyFrames.cs
- COM2PictureConverter.cs
- ConfigXmlComment.cs
- DataGridViewCellFormattingEventArgs.cs
- SchemaDeclBase.cs
- DataGridTableCollection.cs
- DataGridViewColumnCollectionDialog.cs
- HttpRequestBase.cs
- SoapElementAttribute.cs
- FloatUtil.cs
- Closure.cs
- DependencyPropertyAttribute.cs
- QilGeneratorEnv.cs
- EmbeddedObject.cs
- SatelliteContractVersionAttribute.cs
- wmiprovider.cs
- DataView.cs
- X500Name.cs
- JsonReader.cs
- SafeMarshalContext.cs
- HttpCacheVaryByContentEncodings.cs
- RegexWriter.cs
- ControlAdapter.cs
- QilExpression.cs
- ProviderManager.cs
- SystemDiagnosticsSection.cs
- ExternalException.cs
- _ScatterGatherBuffers.cs
- PointAnimationUsingKeyFrames.cs
- TypeListConverter.cs
- GradientStop.cs
- HybridDictionary.cs
- TranslateTransform.cs
- MeasureItemEvent.cs
- CodeCommentStatement.cs
- PtsPage.cs
- InvokeMemberBinder.cs
- EmptyStringExpandableObjectConverter.cs
- DataTableMapping.cs
- ForeignKeyConstraint.cs
- InstanceHandle.cs
- SignedXmlDebugLog.cs
- HttpStreamXmlDictionaryWriter.cs
- Visual3DCollection.cs
- ConnectionPointCookie.cs
- ByteFacetDescriptionElement.cs
- ToolboxDataAttribute.cs
- PanelDesigner.cs
- TextEditorCopyPaste.cs
- MatrixKeyFrameCollection.cs
- TabPage.cs
- FormViewDeletedEventArgs.cs
- DBConcurrencyException.cs
- DictionaryBase.cs
- SchemaSetCompiler.cs
- WindowsEditBoxRange.cs
- Debug.cs
- ForceCopyBuildProvider.cs
- WhitespaceSignificantCollectionAttribute.cs
- CustomAttribute.cs
- Brush.cs
- CommandField.cs
- RootBuilder.cs
- CompilationLock.cs
- EventProviderTraceListener.cs
- XPathBinder.cs
- SweepDirectionValidation.cs
- ServiceInstanceProvider.cs
- FormClosedEvent.cs
- FieldNameLookup.cs
- AssemblyCollection.cs
- ListBindingConverter.cs
- SqlConnectionPoolProviderInfo.cs
- CommonObjectSecurity.cs
- TabOrder.cs
- validation.cs
- X509ChainElement.cs
- InternalConfigSettingsFactory.cs
- DataGridViewTextBoxCell.cs
- RtType.cs
- SuppressIldasmAttribute.cs
- ExpressionPrinter.cs
- ParameterCollection.cs
- SqlCommand.cs
- SchemaTableColumn.cs
- MultipleFilterMatchesException.cs
- TraceData.cs
- ToolStripPanel.cs
- DataGridPageChangedEventArgs.cs
- WorkflowInvoker.cs
- ProcessDesigner.cs