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
- StylusPointPropertyInfoDefaults.cs
- SqlProcedureAttribute.cs
- SecureUICommand.cs
- StringUtil.cs
- DBConnectionString.cs
- SiteMapHierarchicalDataSourceView.cs
- ReliabilityContractAttribute.cs
- StateDesignerConnector.cs
- AdRotator.cs
- XmlRawWriterWrapper.cs
- HotCommands.cs
- CmsUtils.cs
- dbdatarecord.cs
- ResourceAttributes.cs
- XmlILConstructAnalyzer.cs
- SHA256CryptoServiceProvider.cs
- ExecutionEngineException.cs
- _SafeNetHandles.cs
- XmlEntity.cs
- SafeFileMappingHandle.cs
- ConnectionStringsExpressionBuilder.cs
- Mappings.cs
- Comparer.cs
- TimelineGroup.cs
- ConnectionManagementElement.cs
- CodeBlockBuilder.cs
- RNGCryptoServiceProvider.cs
- ConnectionConsumerAttribute.cs
- FileDialogCustomPlacesCollection.cs
- ProcessHostFactoryHelper.cs
- ImplicitInputBrush.cs
- EventHandlersStore.cs
- Int64Storage.cs
- X509Certificate.cs
- ConnectionPointCookie.cs
- CompositeDesignerAccessibleObject.cs
- SortedSetDebugView.cs
- RtfFormatStack.cs
- EventPropertyMap.cs
- util.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SingleTagSectionHandler.cs
- XmlSchemaProviderAttribute.cs
- RestHandlerFactory.cs
- COM2TypeInfoProcessor.cs
- CreatingCookieEventArgs.cs
- PropertyGridView.cs
- SourceLineInfo.cs
- ISO2022Encoding.cs
- nulltextnavigator.cs
- Input.cs
- NodeFunctions.cs
- DataBindingCollectionEditor.cs
- MissingManifestResourceException.cs
- ClientOptions.cs
- Speller.cs
- SessionStateItemCollection.cs
- FormatterServices.cs
- TemplatePropertyEntry.cs
- WorkflowDesignerColors.cs
- SystemColors.cs
- VScrollBar.cs
- BlockUIContainer.cs
- UntrustedRecipientException.cs
- PixelShader.cs
- LayoutManager.cs
- DefaultTraceListener.cs
- SqlGatherConsumedAliases.cs
- ExtentKey.cs
- PrimaryKeyTypeConverter.cs
- TrustLevel.cs
- MethodBuilder.cs
- ColorMap.cs
- unsafenativemethodstextservices.cs
- TemplateBamlRecordReader.cs
- EntityCommandExecutionException.cs
- StylusPointProperties.cs
- BindUriHelper.cs
- BitmapFrame.cs
- HostVisual.cs
- SQLInt32Storage.cs
- HtmlObjectListAdapter.cs
- SystemResources.cs
- WebPartConnectionsCancelEventArgs.cs
- MetadataHelper.cs
- DESCryptoServiceProvider.cs
- DiscoveryExceptionDictionary.cs
- Queue.cs
- ConfigXmlCDataSection.cs
- Double.cs
- FormatSettings.cs
- Assert.cs
- XsltSettings.cs
- BamlCollectionHolder.cs
- WindowsFormsSectionHandler.cs
- TableLayoutStyle.cs
- DataGridCaption.cs
- ToolStripSeparatorRenderEventArgs.cs
- DocumentOutline.cs
- IOThreadTimer.cs