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
- ResourceDescriptionAttribute.cs
- Button.cs
- ActionMessageFilterTable.cs
- EntityDataSourceWrapper.cs
- PageSettings.cs
- RangeExpression.cs
- InvokeHandlers.cs
- ExtendedProperty.cs
- DbTransaction.cs
- EventRouteFactory.cs
- Scene3D.cs
- CompilerLocalReference.cs
- peernodeimplementation.cs
- DelegateBodyWriter.cs
- JapaneseLunisolarCalendar.cs
- Unit.cs
- DataContractSerializerFaultFormatter.cs
- PathStreamGeometryContext.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- EventLogPermissionHolder.cs
- Rotation3D.cs
- ListView.cs
- List.cs
- LookupTables.cs
- InternalCache.cs
- IPCCacheManager.cs
- HelpInfo.cs
- RedirectionProxy.cs
- XamlReaderConstants.cs
- Win32Native.cs
- SmtpMail.cs
- ToolboxItemAttribute.cs
- FormClosingEvent.cs
- UnsafeNativeMethods.cs
- FieldToken.cs
- AssemblyBuilder.cs
- RequestCachePolicyConverter.cs
- XmlSchemaValidator.cs
- ExpressionBuilderCollection.cs
- DataListGeneralPage.cs
- ReadOnlyDictionary.cs
- ParseChildrenAsPropertiesAttribute.cs
- NumberSubstitution.cs
- DesignOnlyAttribute.cs
- DoubleLink.cs
- UriSection.cs
- DeviceSpecific.cs
- SqlReorderer.cs
- wgx_sdk_version.cs
- SerializationEventsCache.cs
- ObjectDataSourceStatusEventArgs.cs
- TextElementEnumerator.cs
- basevalidator.cs
- DataSourceControlBuilder.cs
- FastEncoderWindow.cs
- MultilineStringEditor.cs
- SqlException.cs
- HttpException.cs
- ScriptResourceAttribute.cs
- QuaternionAnimation.cs
- DetailsViewModeEventArgs.cs
- ClientSettingsProvider.cs
- SQLDouble.cs
- IPPacketInformation.cs
- PeerResolverMode.cs
- SendMailErrorEventArgs.cs
- OptimizedTemplateContentHelper.cs
- MessageBox.cs
- ZipIOExtraField.cs
- PrePostDescendentsWalker.cs
- NaturalLanguageHyphenator.cs
- CaseDesigner.xaml.cs
- UndirectedGraph.cs
- ConsoleTraceListener.cs
- TableCellCollection.cs
- SmtpReplyReader.cs
- ButtonRenderer.cs
- CacheEntry.cs
- StandardCommands.cs
- ToolStripItemCollection.cs
- MaskedTextBoxTextEditor.cs
- DefaultProxySection.cs
- TemplateBindingExtension.cs
- EntityClientCacheKey.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- SharedDp.cs
- BindingContext.cs
- MobileErrorInfo.cs
- WebResourceAttribute.cs
- TextPatternIdentifiers.cs
- ToolStripSystemRenderer.cs
- UIElementCollection.cs
- MarginCollapsingState.cs
- Solver.cs
- ProviderCollection.cs
- StyleHelper.cs
- GenericRootAutomationPeer.cs
- DataBindingCollectionConverter.cs
- MarkupWriter.cs
- AdRotator.cs