Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / FilterQueryOptionExpression.cs / 2 / FilterQueryOptionExpression.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a filter query option in resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Linq.Expressions; ////// An resource specific expression representing a filter query option. /// internal class FilterQueryOptionExpression : QueryOptionExpression { ///predicate private Expression predicate; ////// Creates a FilterQueryOptionExpression expression /// /// the return type of the expression /// the predicate internal FilterQueryOptionExpression(Type type, Expression predicate) : base((ExpressionType)ResourceExpressionType.FilterQueryOption, type) { this.predicate = predicate; } ///Gets the query option value. internal Expression Predicate { get { return this.predicate; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Respresents a filter query option in resource bound expression tree. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Linq.Expressions; ////// An resource specific expression representing a filter query option. /// internal class FilterQueryOptionExpression : QueryOptionExpression { ///predicate private Expression predicate; ////// Creates a FilterQueryOptionExpression expression /// /// the return type of the expression /// the predicate internal FilterQueryOptionExpression(Type type, Expression predicate) : base((ExpressionType)ResourceExpressionType.FilterQueryOption, type) { this.predicate = predicate; } ///Gets the query option value. internal Expression Predicate { get { return this.predicate; } } } } // 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
- TextEffectCollection.cs
- _UriSyntax.cs
- Parser.cs
- EventMap.cs
- Localizer.cs
- PagePropertiesChangingEventArgs.cs
- ThousandthOfEmRealDoubles.cs
- ColumnPropertiesGroup.cs
- XmlDataContract.cs
- NestPullup.cs
- _ConnectionGroup.cs
- DiscoveryClientReferences.cs
- InputScope.cs
- AppDomainCompilerProxy.cs
- addressfiltermode.cs
- SetIndexBinder.cs
- ToolStripControlHost.cs
- TextTrailingWordEllipsis.cs
- UniqueIdentifierService.cs
- DataRelation.cs
- DataGridItemCollection.cs
- GridViewDeletedEventArgs.cs
- PropertyPath.cs
- ColumnMapVisitor.cs
- ExpandoClass.cs
- MachineKeyConverter.cs
- XmlSchemaSimpleTypeRestriction.cs
- WorkflowQueuingService.cs
- ThemeableAttribute.cs
- StyleHelper.cs
- EntityProviderFactory.cs
- PathStreamGeometryContext.cs
- SqlClientWrapperSmiStreamChars.cs
- CharEntityEncoderFallback.cs
- GuidConverter.cs
- DeploymentSection.cs
- OutputCacheSettingsSection.cs
- NamedPermissionSet.cs
- ConnectionPointConverter.cs
- StrongNameIdentityPermission.cs
- BamlReader.cs
- WindowsAuthenticationEventArgs.cs
- PageFunction.cs
- CodeConditionStatement.cs
- AdornerHitTestResult.cs
- UrlMappingsModule.cs
- LookupBindingPropertiesAttribute.cs
- Update.cs
- MimePart.cs
- ReadOnlyDictionary.cs
- SQLRoleProvider.cs
- BitConverter.cs
- WorkflowDispatchContext.cs
- RightsManagementPermission.cs
- ModelItemExtensions.cs
- wgx_render.cs
- ConnectionProviderAttribute.cs
- DataGridViewCellLinkedList.cs
- Brush.cs
- SocketException.cs
- ParserExtension.cs
- DesignerActionKeyboardBehavior.cs
- HttpRuntimeSection.cs
- FacetEnabledSchemaElement.cs
- WithParamAction.cs
- ScrollEvent.cs
- InvariantComparer.cs
- PlainXmlSerializer.cs
- TextContainerChangedEventArgs.cs
- ControlCollection.cs
- DataAdapter.cs
- EntityDescriptor.cs
- sqlstateclientmanager.cs
- DrawItemEvent.cs
- DispatchWrapper.cs
- AutomationElement.cs
- PolyBezierSegment.cs
- TreeViewBindingsEditorForm.cs
- HtmlTableCellCollection.cs
- GC.cs
- ArrowControl.xaml.cs
- GPPOINTF.cs
- ControlPaint.cs
- AnnotationObservableCollection.cs
- TableItemPatternIdentifiers.cs
- ClassData.cs
- FormParameter.cs
- ListContractAdapter.cs
- ConfigurationStrings.cs
- ThreadStaticAttribute.cs
- CqlWriter.cs
- EventArgs.cs
- TextBlockAutomationPeer.cs
- BypassElement.cs
- EntityProviderServices.cs
- Select.cs
- UrlPath.cs
- ComponentFactoryHelpers.cs
- SharedPersonalizationStateInfo.cs
- _UriSyntax.cs