Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Server / System / Data / Services / Providers / ProjectionNode.cs / 1305376 / ProjectionNode.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Represents a single node in the tree of projections // for queries with $expand and/or $select. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Providers { #region Namespaces using System; using System.Diagnostics; #endregion ///Class describing a single node on the tree of projections /// and expansions. This is the base class used for any projected property. [DebuggerDisplay("ProjectionNode {PropertyName}")] internal class ProjectionNode { #region Private fields ///The name of the property to project. ///If this node represents the root of the projection tree, this name is an empty string. private readonly string propertyName; ///The ///for the property to be projected. If this node represents an open property or it's the root of the projection tree, /// this field is null. private readonly ResourceProperty property; #endregion #region Constructors ///Creates new instance of /// The name of the property to project. /// Thewhich represents a simple projected property. for the property to project. If an open property /// is to be projected, specify null. internal ProjectionNode(string propertyName, ResourceProperty property) { Debug.Assert(propertyName != null, "propertyName != null"); Debug.Assert(property == null || property.Name == propertyName, "If the property is specified its name must match."); this.propertyName = propertyName; this.property = property; } #endregion #region Public properties /// The name of the property to project. ///If this node represents the root of the projection tree, this name is an empty string. public string PropertyName { get { return this.propertyName; } } ///The ///for the property to be projected. If this node represents an open property or it's the root of the projection tree, /// this property is null. public ResourceProperty Property { get { return this.property; } } #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
- IResourceProvider.cs
- BrowsableAttribute.cs
- RestHandlerFactory.cs
- DataBindingExpressionBuilder.cs
- SmiEventSink.cs
- ListViewInsertEventArgs.cs
- ClusterSafeNativeMethods.cs
- ShaderEffect.cs
- SerializationObjectManager.cs
- DBDataPermissionAttribute.cs
- ClientRuntimeConfig.cs
- TypeSystemProvider.cs
- KerberosRequestorSecurityToken.cs
- ItemsControl.cs
- Monitor.cs
- Control.cs
- CheckStoreFileValidityRequest.cs
- DesignerToolboxInfo.cs
- FilteredAttributeCollection.cs
- Model3D.cs
- ListView.cs
- TextElementEnumerator.cs
- DataSourceView.cs
- BindingWorker.cs
- Rect3D.cs
- BaseTemplateBuildProvider.cs
- DocumentApplicationJournalEntry.cs
- AppDomainAttributes.cs
- FrameDimension.cs
- AdjustableArrowCap.cs
- SqlDataSourceSelectingEventArgs.cs
- InstanceContext.cs
- UnorderedHashRepartitionStream.cs
- SystemThemeKey.cs
- DynamicPropertyHolder.cs
- EntitySqlQueryBuilder.cs
- LicenseManager.cs
- ClientFormsAuthenticationMembershipProvider.cs
- WindowsAuthenticationModule.cs
- ClusterRegistryConfigurationProvider.cs
- PropertyDescriptorCollection.cs
- XmlNamedNodeMap.cs
- UserNamePasswordValidator.cs
- XmlImplementation.cs
- RemoteWebConfigurationHostStream.cs
- SQLInt32.cs
- InputLanguageCollection.cs
- CreateSequence.cs
- NamedPipeWorkerProcess.cs
- UnknownBitmapEncoder.cs
- CapabilitiesAssignment.cs
- OrderedDictionaryStateHelper.cs
- PersonalizationProviderHelper.cs
- MLangCodePageEncoding.cs
- AuthorizationContext.cs
- ZipArchive.cs
- PageSettings.cs
- XmlValidatingReader.cs
- CommandSet.cs
- PagePropertiesChangingEventArgs.cs
- XmlSerializerOperationBehavior.cs
- SocketAddress.cs
- ValueQuery.cs
- ItemsControlAutomationPeer.cs
- SqlProcedureAttribute.cs
- SendKeys.cs
- FindSimilarActivitiesVerb.cs
- XmlEventCache.cs
- ReachIDocumentPaginatorSerializer.cs
- BaseCAMarshaler.cs
- CallContext.cs
- StaticFileHandler.cs
- QueryCacheKey.cs
- RowBinding.cs
- OleDbInfoMessageEvent.cs
- EmbeddedMailObjectsCollection.cs
- TreeViewImageKeyConverter.cs
- WindowPattern.cs
- SQLSingle.cs
- TypeDependencyAttribute.cs
- XmlBinaryReaderSession.cs
- CursorInteropHelper.cs
- RawAppCommandInputReport.cs
- TagPrefixCollection.cs
- RtType.cs
- KoreanLunisolarCalendar.cs
- SubpageParaClient.cs
- TransportReplyChannelAcceptor.cs
- XmlEntity.cs
- DataGridView.cs
- DoWhile.cs
- RichTextBox.cs
- Int32AnimationBase.cs
- SecondaryIndexList.cs
- AdministrationHelpers.cs
- AuthenticationManager.cs
- MediaTimeline.cs
- Canvas.cs
- MachineSettingsSection.cs
- ReliableSession.cs