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
- FocusManager.cs
- XmlBoundElement.cs
- IIS7WorkerRequest.cs
- Serializer.cs
- GridViewCancelEditEventArgs.cs
- Stroke.cs
- HtmlInputPassword.cs
- ToolStrip.cs
- StrongNameHelpers.cs
- TreeIterator.cs
- DiscoveryClientRequestChannel.cs
- ScalarType.cs
- _FtpControlStream.cs
- DataGridSortCommandEventArgs.cs
- GeneralTransformGroup.cs
- ObjectMaterializedEventArgs.cs
- TableRowCollection.cs
- DataError.cs
- XhtmlTextWriter.cs
- ComponentChangingEvent.cs
- ImageMapEventArgs.cs
- SecuritySessionSecurityTokenProvider.cs
- CheckedListBox.cs
- IERequestCache.cs
- BrowserInteropHelper.cs
- WebFaultException.cs
- HTTPRemotingHandler.cs
- OleDbError.cs
- WindowsStatusBar.cs
- VirtualizedCellInfoCollection.cs
- SizeFConverter.cs
- XmlTextReaderImplHelpers.cs
- BitStream.cs
- ListManagerBindingsCollection.cs
- SqlProcedureAttribute.cs
- Int32CollectionConverter.cs
- NavigationFailedEventArgs.cs
- CodeIterationStatement.cs
- Comparer.cs
- NativeMethods.cs
- TrackBarDesigner.cs
- DirectionalLight.cs
- ListViewItem.cs
- _SpnDictionary.cs
- QueryAsyncResult.cs
- TdsParameterSetter.cs
- SharedPersonalizationStateInfo.cs
- Wildcard.cs
- Compiler.cs
- PieceNameHelper.cs
- Expression.cs
- ChildTable.cs
- SystemFonts.cs
- AffineTransform3D.cs
- Int64AnimationBase.cs
- WebPartPersonalization.cs
- BuildResult.cs
- ObjectSelectorEditor.cs
- CopyNamespacesAction.cs
- XmlDesigner.cs
- ToolTipService.cs
- AutomationPatternInfo.cs
- XmlAttributeProperties.cs
- Control.cs
- PeerUnsafeNativeCryptMethods.cs
- ContainerParagraph.cs
- XmlSignatureManifest.cs
- HyperLinkField.cs
- Triplet.cs
- MappingSource.cs
- WizardForm.cs
- TextServicesCompartment.cs
- TraceRecord.cs
- BamlTreeMap.cs
- FontUnit.cs
- PassportIdentity.cs
- SqlRetyper.cs
- BlurEffect.cs
- AsyncPostBackErrorEventArgs.cs
- XhtmlCssHandler.cs
- VisualBasicHelper.cs
- DbProviderFactory.cs
- TickBar.cs
- SecurityKeyType.cs
- StringToken.cs
- _RequestCacheProtocol.cs
- WorkflowWebHostingModule.cs
- _HelperAsyncResults.cs
- AudioException.cs
- PngBitmapEncoder.cs
- TextFormattingConverter.cs
- MailAddress.cs
- PartitionedStreamMerger.cs
- HtmlInputImage.cs
- PresentationSource.cs
- SiteMapNodeCollection.cs
- NonBatchDirectoryCompiler.cs
- ConcurrentQueue.cs
- DesignerCommandSet.cs
- DataGridItemEventArgs.cs