Code:
/ 4.0 / 4.0 / 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. //---------------------------------------------------------------------- //// 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
- WebPartCancelEventArgs.cs
- FrameworkObject.cs
- IfAction.cs
- DataGridViewCellCollection.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- TraceAsyncResult.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- CalendarBlackoutDatesCollection.cs
- XsdBuildProvider.cs
- WebPartCatalogAddVerb.cs
- XmlCharCheckingReader.cs
- TrailingSpaceComparer.cs
- ToolStripTemplateNode.cs
- MenuAdapter.cs
- DataGridViewRowCollection.cs
- LayoutSettings.cs
- Visual3D.cs
- PixelShader.cs
- __FastResourceComparer.cs
- SafeNativeMethods.cs
- UITypeEditor.cs
- ResourceDisplayNameAttribute.cs
- MouseBinding.cs
- DesignerPainter.cs
- WebPartTransformer.cs
- LinkUtilities.cs
- String.cs
- ClientSponsor.cs
- SystemIcmpV6Statistics.cs
- Frame.cs
- WasNotInstalledException.cs
- OperatingSystem.cs
- CheckedListBox.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- CLRBindingWorker.cs
- KerberosTicketHashIdentifierClause.cs
- Int64AnimationBase.cs
- DataListComponentEditor.cs
- CurrencyWrapper.cs
- infer.cs
- RemotingSurrogateSelector.cs
- CfgRule.cs
- DesignColumn.cs
- FontEmbeddingManager.cs
- BulletedListEventArgs.cs
- CodeFieldReferenceExpression.cs
- ContentIterators.cs
- StringUtil.cs
- ListSortDescription.cs
- Panel.cs
- AmbientProperties.cs
- ETagAttribute.cs
- BaseCodePageEncoding.cs
- DigestTraceRecordHelper.cs
- CodeDOMProvider.cs
- CodeArgumentReferenceExpression.cs
- AttributeExtensions.cs
- CannotUnloadAppDomainException.cs
- DrawListViewSubItemEventArgs.cs
- NameValueFileSectionHandler.cs
- TouchFrameEventArgs.cs
- PageVisual.cs
- ClientConfigurationSystem.cs
- DefaultSerializationProviderAttribute.cs
- storepermission.cs
- Viewport3DAutomationPeer.cs
- SafeThemeHandle.cs
- AsyncStreamReader.cs
- DataBoundControlActionList.cs
- DoubleStorage.cs
- StylusButton.cs
- PasswordPropertyTextAttribute.cs
- ReadOnlyMetadataCollection.cs
- IISUnsafeMethods.cs
- BrowserCapabilitiesFactory.cs
- OlePropertyStructs.cs
- ClientBuildManagerCallback.cs
- SingleAnimation.cs
- SemanticResultKey.cs
- FileUpload.cs
- CacheDependency.cs
- FindCriteria.cs
- HttpResponse.cs
- ConstraintConverter.cs
- SemanticResolver.cs
- xml.cs
- AuthorizationSection.cs
- SHA256CryptoServiceProvider.cs
- TrackingProfileDeserializationException.cs
- SemaphoreFullException.cs
- CommandDevice.cs
- DataGridViewRowPostPaintEventArgs.cs
- SliderAutomationPeer.cs
- SynchronizationHandlesCodeDomSerializer.cs
- ListView.cs
- RegistryPermission.cs
- FrameworkTemplate.cs
- XmlDictionary.cs
- DefaultMemberAttribute.cs
- InheritedPropertyDescriptor.cs