Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / ResourceExpression.cs / 3 / ResourceExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Base class for expressions representing resources // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; ////// Abstract base class for expressions that support Query Options /// internal abstract class ResourceExpression : Expression { ///Singleton InputReferenceExpression that should be used to indicate a reference to this element of the resource path internal InputReferenceExpression inputRef; ///expand paths private ListexpandPaths; /// custom query options private DictionarycustomQueryOptions; /// /// Creates a Resource expression /// /// the return type of the expression internal ResourceExpression(ExpressionType nodeType, Type type, ListexpandPaths, Dictionary customQueryOptions) : base(nodeType, type) { this.expandPaths = expandPaths ?? new List (); this.customQueryOptions = customQueryOptions ?? new Dictionary (); } abstract internal ResourceExpression Cast(Type type); abstract internal bool HasQueryOptions { get; } abstract internal Type ResourceType { get; } /// /// Does this expression produce at most 1 resource? /// abstract internal bool IsSingleton { get; } ////// Expand query option for ResourceSet /// internal virtual ListExpandPaths { get { return this.expandPaths; } set { this.expandPaths = value; } } /// /// custom query options for ResourceSet /// internal virtual DictionaryCustomQueryOptions { get { return this.customQueryOptions; } set { this.customQueryOptions = value; } } /// /// Creates an ///that refers to this component of the resource path. /// The returned expression is guaranteed to be reference-equal (object.ReferenceEquals) /// to any other InputReferenceExpression that also refers to this resource path component. /// The InputReferenceExpression that refers to this resource path component internal InputReferenceExpression CreateReference() { if (this.inputRef == null) { this.inputRef = new InputReferenceExpression(this.ResourceType, this); } return this.inputRef; } } } // 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
- ActivityTypeCodeDomSerializer.cs
- Size.cs
- UriTemplateTrieLocation.cs
- XmlAnyElementAttribute.cs
- DragDeltaEventArgs.cs
- AnnotationMap.cs
- XmlMapping.cs
- WebScriptMetadataFormatter.cs
- TextDecorationCollection.cs
- ContentControl.cs
- RightsManagementErrorHandler.cs
- CodeVariableReferenceExpression.cs
- InstanceNameConverter.cs
- MenuItemAutomationPeer.cs
- DebugInfoExpression.cs
- TraceSwitch.cs
- OleDbParameter.cs
- XmlCountingReader.cs
- XmlSchemaAttribute.cs
- WebPermission.cs
- SettingsBindableAttribute.cs
- ErrorInfoXmlDocument.cs
- StateRuntime.cs
- XmlMapping.cs
- LZCodec.cs
- NamespaceQuery.cs
- HttpModulesSection.cs
- QueryAccessibilityHelpEvent.cs
- ComplexTypeEmitter.cs
- TypeUtil.cs
- SiteOfOriginPart.cs
- EmbeddedObject.cs
- UnsafeNativeMethods.cs
- SerializationSectionGroup.cs
- Stroke.cs
- XmlValidatingReader.cs
- XmlAttributeHolder.cs
- XamlFrame.cs
- StrokeRenderer.cs
- PathFigureCollectionValueSerializer.cs
- PrimaryKeyTypeConverter.cs
- WinFormsSpinner.cs
- StreamResourceInfo.cs
- KeyboardDevice.cs
- ChangePasswordAutoFormat.cs
- ConfigurationManagerInternalFactory.cs
- TraceProvider.cs
- PartialArray.cs
- DbgUtil.cs
- GroupByQueryOperator.cs
- WebPartMenuStyle.cs
- ControlBuilder.cs
- MenuScrollingVisibilityConverter.cs
- PageContentCollection.cs
- XPathExpr.cs
- SqlSelectClauseBuilder.cs
- PackUriHelper.cs
- ChannelDispatcher.cs
- ProtectedConfigurationSection.cs
- AssemblyNameProxy.cs
- PersonalizationState.cs
- InfoCardRequestException.cs
- XmlNamespaceMappingCollection.cs
- HtmlInputRadioButton.cs
- MultiTargetingUtil.cs
- SqlRowUpdatedEvent.cs
- WindowsRichEdit.cs
- RuleRefElement.cs
- HtmlInputButton.cs
- datacache.cs
- XmlSchemaProviderAttribute.cs
- SecuritySessionClientSettings.cs
- LeaseManager.cs
- DecimalStorage.cs
- InitiatorSessionSymmetricTransportSecurityProtocol.cs
- SortableBindingList.cs
- BadImageFormatException.cs
- WmlImageAdapter.cs
- NeutralResourcesLanguageAttribute.cs
- Maps.cs
- UnsafeMethods.cs
- ToolboxComponentsCreatingEventArgs.cs
- ButtonChrome.cs
- DataGridViewAdvancedBorderStyle.cs
- Int16Storage.cs
- XmlDocumentFragment.cs
- EastAsianLunisolarCalendar.cs
- ValidatorCompatibilityHelper.cs
- CategoryGridEntry.cs
- ListBox.cs
- QueryActivatableWorkflowsCommand.cs
- MessageSecurityVersionConverter.cs
- OleStrCAMarshaler.cs
- mediaeventargs.cs
- SchemaImporterExtensionsSection.cs
- OrderPreservingMergeHelper.cs
- PrintingPermissionAttribute.cs
- DataBindEngine.cs
- NameValueCache.cs
- WebPartExportVerb.cs