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
- UniqueTransportManagerRegistration.cs
- SvcFileManager.cs
- SettingsAttributeDictionary.cs
- CompleteWizardStep.cs
- BufferedStream.cs
- EventRouteFactory.cs
- ProfileService.cs
- Stylus.cs
- EmptyStringExpandableObjectConverter.cs
- CreateDataSourceDialog.cs
- URLAttribute.cs
- EntitySqlQueryCacheKey.cs
- ArrayItemValue.cs
- DbProviderSpecificTypePropertyAttribute.cs
- InputLanguageCollection.cs
- TableItemPattern.cs
- IconBitmapDecoder.cs
- OdbcEnvironmentHandle.cs
- Container.cs
- diagnosticsswitches.cs
- CryptoKeySecurity.cs
- UxThemeWrapper.cs
- Win32Exception.cs
- ExtendedProtectionPolicy.cs
- RightNameExpirationInfoPair.cs
- SelectionPattern.cs
- MulticastIPAddressInformationCollection.cs
- StructuralType.cs
- FixedSOMPage.cs
- commandenforcer.cs
- SortDescriptionCollection.cs
- Nullable.cs
- XamlFigureLengthSerializer.cs
- CqlErrorHelper.cs
- HttpHostedTransportConfiguration.cs
- StateManagedCollection.cs
- FixedFindEngine.cs
- AccessText.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- ScriptRef.cs
- HandlerBase.cs
- UnionExpr.cs
- DatagridviewDisplayedBandsData.cs
- Focus.cs
- WindowsIdentity.cs
- HostedAspNetEnvironment.cs
- KnownAssembliesSet.cs
- TypeBuilderInstantiation.cs
- DefaultTextStore.cs
- DaylightTime.cs
- DataGridColumnFloatingHeader.cs
- GacUtil.cs
- DbConnectionClosed.cs
- OlePropertyStructs.cs
- AttachedPropertyMethodSelector.cs
- Point.cs
- IDReferencePropertyAttribute.cs
- SmtpException.cs
- DbProviderSpecificTypePropertyAttribute.cs
- Vector3DCollection.cs
- TextSimpleMarkerProperties.cs
- SecurityHelper.cs
- Common.cs
- JsonServiceDocumentSerializer.cs
- InlinedAggregationOperator.cs
- SignatureResourcePool.cs
- TimeSpanConverter.cs
- SoapEnvelopeProcessingElement.cs
- SignedPkcs7.cs
- BevelBitmapEffect.cs
- CapabilitiesUse.cs
- __Filters.cs
- BypassElementCollection.cs
- DynamicValidatorEventArgs.cs
- GeometryValueSerializer.cs
- SqlUdtInfo.cs
- PKCS1MaskGenerationMethod.cs
- TargetInvocationException.cs
- StringCollectionMarkupSerializer.cs
- ConnectionsZoneDesigner.cs
- TextSelectionHighlightLayer.cs
- ModuleConfigurationInfo.cs
- WebDescriptionAttribute.cs
- ControlPropertyNameConverter.cs
- ValidationEventArgs.cs
- WinEventHandler.cs
- XmlReaderSettings.cs
- WsatStrings.cs
- HandlerWithFactory.cs
- MatrixCamera.cs
- CommandHelpers.cs
- SerializationStore.cs
- NullableFloatMinMaxAggregationOperator.cs
- QilInvoke.cs
- OdbcHandle.cs
- Config.cs
- SafeFileMapViewHandle.cs
- BaseParaClient.cs
- RefExpr.cs
- BinaryConverter.cs