Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ALinq / FilterQueryOptionExpression.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FileDetails.cs
- XmlNamespaceDeclarationsAttribute.cs
- ControlEvent.cs
- BitmapFrameEncode.cs
- ImageClickEventArgs.cs
- DoubleLinkList.cs
- GroupPartitionExpr.cs
- HashStream.cs
- ButtonField.cs
- DataGridCellClipboardEventArgs.cs
- CodeNamespaceImportCollection.cs
- DBParameter.cs
- MethodMessage.cs
- DataStreamFromComStream.cs
- Point3DKeyFrameCollection.cs
- ParameterBuilder.cs
- FormsAuthenticationCredentials.cs
- StreamGeometry.cs
- SplineKeyFrames.cs
- ObjectDataSourceStatusEventArgs.cs
- DataDocumentXPathNavigator.cs
- CharacterBuffer.cs
- SecurityElement.cs
- EncodedStreamFactory.cs
- BooleanAnimationBase.cs
- _CacheStreams.cs
- TableLayout.cs
- TaiwanCalendar.cs
- TabItem.cs
- PageSetupDialog.cs
- TableLayoutPanel.cs
- CreateRefExpr.cs
- SQLInt32Storage.cs
- TemplateKeyConverter.cs
- DataColumnCollection.cs
- webbrowsersite.cs
- RemoteWebConfigurationHostServer.cs
- ResXResourceSet.cs
- WebPartCloseVerb.cs
- BamlLocalizableResourceKey.cs
- TreeViewCancelEvent.cs
- ListViewDeleteEventArgs.cs
- TransformerInfo.cs
- RequestCachingSection.cs
- UTF7Encoding.cs
- XamlTemplateSerializer.cs
- IssuanceLicense.cs
- BuildDependencySet.cs
- Message.cs
- Binding.cs
- ActivityExecutor.cs
- ProfessionalColors.cs
- Point4DConverter.cs
- ShaderEffect.cs
- StretchValidation.cs
- ExtensionWindow.cs
- OciEnlistContext.cs
- XmlSecureResolver.cs
- CodeEventReferenceExpression.cs
- IxmlLineInfo.cs
- BitmapSizeOptions.cs
- FontWeightConverter.cs
- UpnEndpointIdentity.cs
- IssuedTokenServiceCredential.cs
- EndpointDiscoveryMetadata11.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- XmlSecureResolver.cs
- XamlDesignerSerializationManager.cs
- XPathSelfQuery.cs
- StyleSheetComponentEditor.cs
- DescriptionAttribute.cs
- EndpointBehaviorElementCollection.cs
- FatalException.cs
- XmlCDATASection.cs
- Attributes.cs
- WebPartActionVerb.cs
- CustomDictionarySources.cs
- DirectoryRedirect.cs
- DataSourceControl.cs
- BitSet.cs
- DetailsViewDeletedEventArgs.cs
- CodeAttachEventStatement.cs
- ToolStripHighContrastRenderer.cs
- PeerApplication.cs
- DataServiceQuery.cs
- AddInSegmentDirectoryNotFoundException.cs
- CodePageEncoding.cs
- XmlSerializer.cs
- Header.cs
- Schedule.cs
- KeyboardEventArgs.cs
- InfoCardAsymmetricCrypto.cs
- CompoundFileStreamReference.cs
- DataGridAutomationPeer.cs
- UpWmlPageAdapter.cs
- TrustManagerPromptUI.cs
- ControlTemplate.cs
- OracleRowUpdatingEventArgs.cs
- GuidConverter.cs
- EditCommandColumn.cs