Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / RefExpr.cs / 1 / RefExpr.cs
//---------------------------------------------------------------------- //// Copyproperty (c) Microsoft Corporation. All propertys reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents REF expression /// ref( expr ) /// internal sealed class RefExpr : Expr { private Expr _refArgExpression; ////// Initializes RefExpr /// /// ref argument expression internal RefExpr( Expr refArgExpr ) { _refArgExpression = refArgExpr; } ////// return ref expression /// internal Expr RefArgExpr { get { return _refArgExpression; } } } ////// Represents DEREF expression /// deref( expr ) /// internal sealed class DerefExpr : Expr { private Expr _refExpr; ////// initializes DEREF expression /// /// internal DerefExpr( Expr refExpr ) { _refExpr = refExpr; } ////// returns ref inner expression /// internal Expr RefExpr { get { return _refExpr; } } } } // 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 [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents REF expression /// ref( expr ) /// internal sealed class RefExpr : Expr { private Expr _refArgExpression; ////// Initializes RefExpr /// /// ref argument expression internal RefExpr( Expr refArgExpr ) { _refArgExpression = refArgExpr; } ////// return ref expression /// internal Expr RefArgExpr { get { return _refArgExpression; } } } ////// Represents DEREF expression /// deref( expr ) /// internal sealed class DerefExpr : Expr { private Expr _refExpr; ////// initializes DEREF expression /// /// internal DerefExpr( Expr refExpr ) { _refExpr = refExpr; } ////// returns ref inner expression /// internal Expr RefExpr { get { return _refExpr; } } } } // 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
- StylusDevice.cs
- IdnMapping.cs
- ChtmlTextWriter.cs
- TagMapCollection.cs
- RegexRunnerFactory.cs
- RegexWriter.cs
- DynamicRendererThreadManager.cs
- WebBrowserSiteBase.cs
- CapabilitiesUse.cs
- BamlRecords.cs
- Padding.cs
- WorkflowServiceBuildProvider.cs
- XsdDataContractImporter.cs
- ObjectStorage.cs
- WebHttpBindingElement.cs
- InvalidWorkflowException.cs
- CmsUtils.cs
- CaseInsensitiveComparer.cs
- tooltip.cs
- _HeaderInfoTable.cs
- AdapterUtil.cs
- ReadContentAsBinaryHelper.cs
- MessageLoggingElement.cs
- ConnectorRouter.cs
- ObjectPropertyMapping.cs
- SystemResourceKey.cs
- Int64AnimationUsingKeyFrames.cs
- ArgumentException.cs
- TreeBuilderBamlTranslator.cs
- ResXFileRef.cs
- PageAsyncTaskManager.cs
- DbgUtil.cs
- DbConnectionFactory.cs
- EventHandlingScope.cs
- OperationAbortedException.cs
- StateFinalizationDesigner.cs
- GregorianCalendarHelper.cs
- DataGridTextBox.cs
- RecognitionEventArgs.cs
- SessionIDManager.cs
- InputLanguageEventArgs.cs
- DesignSurfaceCollection.cs
- ReferentialConstraint.cs
- ReadOnlyTernaryTree.cs
- CodeExpressionCollection.cs
- CodeConstructor.cs
- AssemblyLoader.cs
- SelectedDatesCollection.cs
- ProfessionalColors.cs
- StaticExtension.cs
- SmiEventSink_Default.cs
- ProxyFragment.cs
- AssemblyCollection.cs
- RenderContext.cs
- Internal.cs
- ListItem.cs
- GlobalizationSection.cs
- MimeParameter.cs
- NextPreviousPagerField.cs
- DiscoveryMessageProperty.cs
- RTLAwareMessageBox.cs
- RemotingAttributes.cs
- LineBreak.cs
- InvalidProgramException.cs
- BrowserCapabilitiesCodeGenerator.cs
- PolicyAssertionCollection.cs
- BoundColumn.cs
- VerticalAlignConverter.cs
- NoneExcludedImageIndexConverter.cs
- ToolStripDropDownMenu.cs
- AttachInfo.cs
- UriParserTemplates.cs
- ScrollBar.cs
- ReadOnlyPropertyMetadata.cs
- ExceptionUtil.cs
- NavigationEventArgs.cs
- ImmutablePropertyDescriptorGridEntry.cs
- DateTimeStorage.cs
- PingReply.cs
- DependencyObjectProvider.cs
- HttpResponseHeader.cs
- ProviderException.cs
- ThicknessKeyFrameCollection.cs
- KeyValuePair.cs
- PinnedBufferMemoryStream.cs
- MediaTimeline.cs
- DataPointer.cs
- UniqueID.cs
- ConstructorNeedsTagAttribute.cs
- DataServiceContext.cs
- BindingListCollectionView.cs
- TimeSpan.cs
- HtmlTableRow.cs
- TypeSchema.cs
- WeakReference.cs
- LinkButton.cs
- ContainsRowNumberChecker.cs
- ModelUtilities.cs
- LicFileLicenseProvider.cs
- ValidationErrorCollection.cs