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
- ScriptResourceHandler.cs
- DelegateBodyWriter.cs
- PenThread.cs
- TextContainerChangedEventArgs.cs
- Main.cs
- DBCSCodePageEncoding.cs
- TextRangeAdaptor.cs
- SystemUnicastIPAddressInformation.cs
- ByteStorage.cs
- WorkflowOperationBehavior.cs
- NonVisualControlAttribute.cs
- EventManager.cs
- UriScheme.cs
- TypeNameConverter.cs
- FontUnit.cs
- XmlBinaryReader.cs
- HttpRequestCacheValidator.cs
- MetricEntry.cs
- BitmapEffectvisualstate.cs
- ColorConverter.cs
- DelayedRegex.cs
- PointValueSerializer.cs
- OleDbParameter.cs
- StringStorage.cs
- XmlNamespaceDeclarationsAttribute.cs
- SelectionGlyphBase.cs
- HttpCookiesSection.cs
- Slider.cs
- WebPartDisplayModeCollection.cs
- MetadataSection.cs
- _PooledStream.cs
- RuleSettingsCollection.cs
- CodeGeneratorOptions.cs
- _SSPIWrapper.cs
- OutputCache.cs
- TemplateInstanceAttribute.cs
- TypefaceMap.cs
- OpenFileDialog.cs
- Calendar.cs
- ConstrainedDataObject.cs
- RegisteredExpandoAttribute.cs
- AddInAttribute.cs
- WebPartConnectionCollection.cs
- UnmanagedMarshal.cs
- KnownBoxes.cs
- CodeGotoStatement.cs
- EventLogEntryCollection.cs
- TimeoutConverter.cs
- SchemaInfo.cs
- MetabaseSettings.cs
- RepeatInfo.cs
- FileChangesMonitor.cs
- ReadOnlyDataSourceView.cs
- WebChannelFactory.cs
- Emitter.cs
- TemplateBuilder.cs
- ExpressionBindings.cs
- ActiveDocumentEvent.cs
- Size3D.cs
- ConnectionStringsExpressionBuilder.cs
- IntSecurity.cs
- TraceContext.cs
- RowTypeElement.cs
- RijndaelManagedTransform.cs
- SqlTransaction.cs
- TargetInvocationException.cs
- StringCollection.cs
- TextBlockAutomationPeer.cs
- InvalidAsynchronousStateException.cs
- ToolStripContentPanel.cs
- ListViewEditEventArgs.cs
- PointUtil.cs
- TCPListener.cs
- AssemblyInfo.cs
- EventLogLink.cs
- CachedCompositeFamily.cs
- StickyNoteHelper.cs
- BindingCollectionElement.cs
- PropertyBuilder.cs
- ZoneMembershipCondition.cs
- TextStore.cs
- ByteStreamBufferedMessageData.cs
- Boolean.cs
- configsystem.cs
- HMACSHA384.cs
- XmlCustomFormatter.cs
- HttpFormatExtensions.cs
- CommandSet.cs
- CacheSection.cs
- InkSerializer.cs
- HtmlInputText.cs
- RNGCryptoServiceProvider.cs
- ReferencedCategoriesDocument.cs
- initElementDictionary.cs
- FileDialogPermission.cs
- WebZone.cs
- SqlDataSourceFilteringEventArgs.cs
- contentDescriptor.cs
- ValueQuery.cs
- XpsStructure.cs