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
- DataGridViewDataConnection.cs
- DesignerLoader.cs
- MatrixTransform.cs
- HtmlImage.cs
- XamlDesignerSerializationManager.cs
- RoleGroupCollectionEditor.cs
- DummyDataSource.cs
- XmlDocument.cs
- XmlEncodedRawTextWriter.cs
- ThreadExceptionDialog.cs
- ParserContext.cs
- JavaScriptString.cs
- ContainsRowNumberChecker.cs
- HttpApplication.cs
- DeclaredTypeValidator.cs
- StyleBamlRecordReader.cs
- WinOEToolBoxItem.cs
- CompiledQuery.cs
- ExceptionWrapper.cs
- FormViewPageEventArgs.cs
- WorkflowQueuingService.cs
- RayHitTestParameters.cs
- TdsParserStaticMethods.cs
- ColumnCollection.cs
- DrawingBrush.cs
- MethodSignatureGenerator.cs
- ToolStripHighContrastRenderer.cs
- FixedDocument.cs
- ListViewContainer.cs
- MetafileEditor.cs
- altserialization.cs
- PowerStatus.cs
- MobileListItem.cs
- ConnectionManagementSection.cs
- RectAnimationClockResource.cs
- TaskFactory.cs
- SupportsEventValidationAttribute.cs
- DirectionalLight.cs
- LinqExpressionNormalizer.cs
- ImageButton.cs
- StorageScalarPropertyMapping.cs
- WhitespaceRuleLookup.cs
- ExpressionBinding.cs
- HttpResponseInternalWrapper.cs
- CompilationUtil.cs
- MetadataCache.cs
- EmptyCollection.cs
- RelationalExpressions.cs
- Binding.cs
- EndpointIdentity.cs
- TypefaceMap.cs
- GorillaCodec.cs
- WebHeaderCollection.cs
- MatrixAnimationUsingKeyFrames.cs
- MissingMethodException.cs
- PaintValueEventArgs.cs
- SiteMapNode.cs
- PenCursorManager.cs
- OperationExecutionFault.cs
- ClientFormsAuthenticationMembershipProvider.cs
- ProfilePropertyNameValidator.cs
- SerialStream.cs
- ClassHandlersStore.cs
- InstanceDataCollection.cs
- XmlSchemaChoice.cs
- FontConverter.cs
- Int16Animation.cs
- AttributeParameterInfo.cs
- CharEntityEncoderFallback.cs
- dsa.cs
- CompatibleComparer.cs
- SapiRecognizer.cs
- XmlReader.cs
- DataGridViewComboBoxEditingControl.cs
- TextBoxAutoCompleteSourceConverter.cs
- MachineKeySection.cs
- PrimitiveXmlSerializers.cs
- TextTreeText.cs
- TextEditorMouse.cs
- latinshape.cs
- AsyncOperation.cs
- UriSection.cs
- PointLightBase.cs
- ServerType.cs
- Hex.cs
- XmlEntity.cs
- StaticFileHandler.cs
- BadImageFormatException.cs
- LicenseManager.cs
- Figure.cs
- BasePattern.cs
- RecognizerStateChangedEventArgs.cs
- OleDbRowUpdatedEvent.cs
- DataGridComboBoxColumn.cs
- FileLogRecordStream.cs
- AttachedAnnotation.cs
- TimeSpanStorage.cs
- NamespaceList.cs
- Transform3DGroup.cs
- FixedSOMTableCell.cs