Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / RefExpr.cs / 1305376 / RefExpr.cs
//---------------------------------------------------------------------- //// Copyproperty (c) Microsoft Corporation. All propertys reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents REF(expr) expression. /// internal sealed class RefExpr : Node { private readonly Node _argExpr; ////// Initializes REF expression node. /// internal RefExpr(Node refArgExpr) { _argExpr = refArgExpr; } ////// Return ref argument expression. /// internal Node ArgExpr { get { return _argExpr; } } } ////// Represents DEREF(epxr) expression. /// internal sealed class DerefExpr : Node { private Node _argExpr; ////// Initializes DEREF expression node. /// internal DerefExpr(Node derefArgExpr) { _argExpr = derefArgExpr; } ////// Ieturns ref argument expression. /// internal Node ArgExpr { get { return _argExpr; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ChameleonKey.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- MimeBasePart.cs
- CmsInterop.cs
- DataGridViewCellEventArgs.cs
- WithParamAction.cs
- ColumnBinding.cs
- BamlRecordWriter.cs
- COM2ColorConverter.cs
- MsmqElementBase.cs
- ResumeStoryboard.cs
- CredentialManagerDialog.cs
- AssemblyCollection.cs
- MenuItem.cs
- FormView.cs
- TileBrush.cs
- NativeDirectoryServicesQueryAPIs.cs
- SQLString.cs
- FixedMaxHeap.cs
- DesignerProperties.cs
- QilTargetType.cs
- NeedSkipTokenVisitor.cs
- IgnoreDataMemberAttribute.cs
- COM2ExtendedBrowsingHandler.cs
- DataGridViewHitTestInfo.cs
- TemplateControlParser.cs
- PaginationProgressEventArgs.cs
- SqlCacheDependencyDatabase.cs
- SamlConstants.cs
- DataSet.cs
- DateTimeConverter.cs
- PenThreadWorker.cs
- XMLSyntaxException.cs
- OleDbRowUpdatedEvent.cs
- ProtocolsSection.cs
- ExecutedRoutedEventArgs.cs
- DataGridItemCollection.cs
- Stackframe.cs
- ScrollBarAutomationPeer.cs
- CommandSet.cs
- FunctionCommandText.cs
- InputProviderSite.cs
- FigureHelper.cs
- BlobPersonalizationState.cs
- PolicyManager.cs
- LineVisual.cs
- HtmlControl.cs
- ValidatorCollection.cs
- DataGridViewCheckBoxCell.cs
- CodeCompileUnit.cs
- FormDocumentDesigner.cs
- CroppedBitmap.cs
- WebConfigurationHost.cs
- VarInfo.cs
- NextPreviousPagerField.cs
- RecognizedAudio.cs
- BitVector32.cs
- ShapingEngine.cs
- DataKey.cs
- XmlSerializationWriter.cs
- WebPartVerbCollection.cs
- ChangeConflicts.cs
- AdornerDecorator.cs
- LockCookie.cs
- PrintPreviewGraphics.cs
- XmlNodeChangedEventManager.cs
- ConfigXmlComment.cs
- RequestContext.cs
- LoginNameDesigner.cs
- GridErrorDlg.cs
- HttpStaticObjectsCollectionBase.cs
- _ServiceNameStore.cs
- BamlResourceContent.cs
- HttpNamespaceReservationInstallComponent.cs
- AnnotationMap.cs
- HttpCapabilitiesEvaluator.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- PageWrapper.cs
- NavigationExpr.cs
- SqlDataSourceQueryEditor.cs
- DiscoveryDocumentLinksPattern.cs
- TiffBitmapEncoder.cs
- VSWCFServiceContractGenerator.cs
- CLSCompliantAttribute.cs
- UnmanagedBitmapWrapper.cs
- TimelineGroup.cs
- DbConnectionStringBuilder.cs
- CounterSample.cs
- Crypto.cs
- QuotedPrintableStream.cs
- PreservationFileReader.cs
- DataGridItemEventArgs.cs
- ColumnReorderedEventArgs.cs
- CrossContextChannel.cs
- DiagnosticsConfigurationHandler.cs
- ErrorLog.cs
- ConfigurationSectionHelper.cs
- sqlstateclientmanager.cs
- CodeValidator.cs
- LassoHelper.cs