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
- SystemInformation.cs
- WmfPlaceableFileHeader.cs
- smtppermission.cs
- AnonymousIdentificationSection.cs
- FilteredAttributeCollection.cs
- Transaction.cs
- PageWrapper.cs
- WebProxyScriptElement.cs
- InvalidDataException.cs
- PasswordTextContainer.cs
- DecimalKeyFrameCollection.cs
- CodeValidator.cs
- Delay.cs
- unitconverter.cs
- EUCJPEncoding.cs
- NaturalLanguageHyphenator.cs
- CalendarTable.cs
- IconConverter.cs
- TextAction.cs
- MemberAccessException.cs
- SerializableTypeCodeDomSerializer.cs
- Function.cs
- ToolStripPanelRow.cs
- PageContent.cs
- NetNamedPipeBindingCollectionElement.cs
- ViewGenerator.cs
- HScrollProperties.cs
- SymmetricCryptoHandle.cs
- DiscoveryReferences.cs
- PassportAuthenticationModule.cs
- XmlWrappingReader.cs
- CompilerHelpers.cs
- GridLengthConverter.cs
- InternalBase.cs
- HtmlTableRowCollection.cs
- XslVisitor.cs
- Bold.cs
- ConcurrencyBehavior.cs
- GridItemCollection.cs
- Label.cs
- XmlObjectSerializerReadContextComplexJson.cs
- ExpandoObject.cs
- CapabilitiesSection.cs
- Pens.cs
- ExpressionLexer.cs
- XmlName.cs
- CodeExpressionCollection.cs
- HttpApplication.cs
- BeginEvent.cs
- CodeValidator.cs
- WebDisplayNameAttribute.cs
- UpdatePanelControlTrigger.cs
- IERequestCache.cs
- DirectoryNotFoundException.cs
- MessageEncoder.cs
- SplashScreenNativeMethods.cs
- DrawListViewSubItemEventArgs.cs
- UnconditionalPolicy.cs
- AlphabeticalEnumConverter.cs
- IRCollection.cs
- ReaderWriterLock.cs
- EntityCollectionChangedParams.cs
- TraceContextEventArgs.cs
- EventMappingSettings.cs
- TemplateControl.cs
- SmtpClient.cs
- XmlHierarchyData.cs
- UInt32Storage.cs
- ToolStripContentPanelDesigner.cs
- namescope.cs
- WebScriptMetadataFormatter.cs
- MatrixCamera.cs
- SafeEventLogWriteHandle.cs
- VerificationException.cs
- TextProviderWrapper.cs
- NetworkAddressChange.cs
- SimpleHandlerFactory.cs
- TableAdapterManagerMethodGenerator.cs
- OdbcConnectionString.cs
- DbConvert.cs
- XhtmlBasicLabelAdapter.cs
- InvokeGenerator.cs
- Point3DKeyFrameCollection.cs
- BaseTemplateParser.cs
- ItemCollection.cs
- CommandEventArgs.cs
- BuildProviderAppliesToAttribute.cs
- AsyncContentLoadedEventArgs.cs
- DynamicObject.cs
- StoryFragments.cs
- FullTextBreakpoint.cs
- EntitySqlQueryState.cs
- DataGridView.cs
- FlowDocumentPaginator.cs
- StorageEndPropertyMapping.cs
- LockCookie.cs
- DataTable.cs
- SecUtil.cs
- ArrayElementGridEntry.cs
- WsdlBuildProvider.cs