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
- MonthChangedEventArgs.cs
- MachineKeySection.cs
- DataServicePagingProviderWrapper.cs
- DrawingState.cs
- DBConnection.cs
- CodeRemoveEventStatement.cs
- HelpKeywordAttribute.cs
- StdValidatorsAndConverters.cs
- NavigateUrlConverter.cs
- PostBackOptions.cs
- FormatterConverter.cs
- DataServiceExpressionVisitor.cs
- HttpRequestWrapper.cs
- EventLogEntry.cs
- CultureMapper.cs
- DataGridPreparingCellForEditEventArgs.cs
- ListViewTableCell.cs
- DataSourceControlBuilder.cs
- DataObjectSettingDataEventArgs.cs
- ChildTable.cs
- TypeBuilder.cs
- CrossAppDomainChannel.cs
- HitTestDrawingContextWalker.cs
- XmlILIndex.cs
- UnmanagedMemoryStream.cs
- CodeSnippetStatement.cs
- DesignerVerbCollection.cs
- TimeSpanSecondsConverter.cs
- ExtendedPropertyDescriptor.cs
- CompositeDispatchFormatter.cs
- SqlRewriteScalarSubqueries.cs
- RawStylusInput.cs
- WinFormsSpinner.cs
- ColorPalette.cs
- MemberInfoSerializationHolder.cs
- PolicyValidator.cs
- SafeProcessHandle.cs
- KnownBoxes.cs
- Subtree.cs
- Trigger.cs
- DataSourceControlBuilder.cs
- FontUnit.cs
- SqlTopReducer.cs
- NamespaceInfo.cs
- SystemInformation.cs
- MenuStrip.cs
- PrintPreviewGraphics.cs
- _CommandStream.cs
- WebSysDisplayNameAttribute.cs
- UriParserTemplates.cs
- LineSegment.cs
- ProcessHostMapPath.cs
- Camera.cs
- Renderer.cs
- SqlException.cs
- DataGridViewAccessibleObject.cs
- WebBrowserEvent.cs
- RegexNode.cs
- SqlConnectionPoolProviderInfo.cs
- TemplateBindingExtensionConverter.cs
- WebService.cs
- TreeView.cs
- Polyline.cs
- XhtmlBasicListAdapter.cs
- HtmlTitle.cs
- EdmPropertyAttribute.cs
- Bezier.cs
- AppDomainProtocolHandler.cs
- HttpCacheVary.cs
- DependencyObjectPropertyDescriptor.cs
- ParameterModifier.cs
- XmlILStorageConverter.cs
- FromReply.cs
- _SpnDictionary.cs
- EraserBehavior.cs
- ThreadStartException.cs
- ProjectionPruner.cs
- OutOfProcStateClientManager.cs
- RightsManagementInformation.cs
- ZeroOpNode.cs
- ControlUtil.cs
- SpotLight.cs
- dbdatarecord.cs
- InputMethodStateTypeInfo.cs
- GeneralTransform2DTo3DTo2D.cs
- ContextMenuService.cs
- Style.cs
- ActivityDelegate.cs
- WmlPhoneCallAdapter.cs
- XmlAnyElementAttribute.cs
- RowToParametersTransformer.cs
- SqlLiftIndependentRowExpressions.cs
- DESCryptoServiceProvider.cs
- DesignerView.xaml.cs
- EditorBrowsableAttribute.cs
- QuadraticBezierSegment.cs
- BinaryFormatter.cs
- WebPartAddingEventArgs.cs
- ServiceBuildProvider.cs
- FragmentQueryProcessor.cs