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
- TextTrailingCharacterEllipsis.cs
- SingleTagSectionHandler.cs
- ExpressionParser.cs
- HMACSHA384.cs
- InfiniteTimeSpanConverter.cs
- QuinticEase.cs
- SQLBoolean.cs
- MimeObjectFactory.cs
- UserMapPath.cs
- EventInfo.cs
- KnownTypesProvider.cs
- FilteredXmlReader.cs
- HwndSourceParameters.cs
- DataGridViewCellStateChangedEventArgs.cs
- BaseParser.cs
- ClientRuntimeConfig.cs
- HttpWriter.cs
- XXXOnTypeBuilderInstantiation.cs
- UIElement3D.cs
- TextEndOfParagraph.cs
- SerializationEventsCache.cs
- cookiecontainer.cs
- UIServiceHelper.cs
- ListViewGroup.cs
- SqlBuffer.cs
- ObjectSecurity.cs
- AssemblyAttributes.cs
- BoundColumn.cs
- XmlBinaryReader.cs
- BooleanConverter.cs
- AsyncCompletedEventArgs.cs
- UrlMapping.cs
- XmlQueryRuntime.cs
- BindableAttribute.cs
- EventRouteFactory.cs
- CodeVariableDeclarationStatement.cs
- Identifier.cs
- PreservationFileWriter.cs
- PropagatorResult.cs
- ResponseBodyWriter.cs
- ErrorLog.cs
- CrossSiteScriptingValidation.cs
- XmlSchemaDocumentation.cs
- PointF.cs
- SecurityProtocolFactory.cs
- ParentUndoUnit.cs
- Object.cs
- MetricEntry.cs
- BinarySerializer.cs
- ReadOnlyAttribute.cs
- LassoHelper.cs
- DataServiceEntityAttribute.cs
- Point3DConverter.cs
- HideDisabledControlAdapter.cs
- SqlTopReducer.cs
- FrameAutomationPeer.cs
- ClientConfigurationHost.cs
- MarkupProperty.cs
- ArrangedElementCollection.cs
- AnnotationService.cs
- GregorianCalendarHelper.cs
- EncodingTable.cs
- HostingMessageProperty.cs
- SafeArrayTypeMismatchException.cs
- HttpCookiesSection.cs
- D3DImage.cs
- DecoratedNameAttribute.cs
- SchemaCollectionPreprocessor.cs
- TypedElement.cs
- InvalidPropValue.cs
- CalloutQueueItem.cs
- TextProperties.cs
- Int16AnimationBase.cs
- _SafeNetHandles.cs
- ExpressionNode.cs
- future.cs
- xdrvalidator.cs
- RawAppCommandInputReport.cs
- DataColumnMappingCollection.cs
- ZeroOpNode.cs
- objectresult_tresulttype.cs
- CollectionEditor.cs
- ServiceOperation.cs
- XPathAncestorIterator.cs
- EventHandlersDesigner.cs
- PeerNameRecord.cs
- Collection.cs
- SafeEventLogReadHandle.cs
- printdlgexmarshaler.cs
- SafeNativeMethods.cs
- ValidationRule.cs
- loginstatus.cs
- PeerTransportListenAddressConverter.cs
- DrawingContextWalker.cs
- XmlnsDefinitionAttribute.cs
- WebPartAddingEventArgs.cs
- CodeTypeReferenceCollection.cs
- StandardCommands.cs
- SoapExtensionTypeElementCollection.cs
- HtmlElementEventArgs.cs