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
- AppDomainFactory.cs
- HintTextConverter.cs
- WizardPanelChangingEventArgs.cs
- HScrollProperties.cs
- SingleSelectRootGridEntry.cs
- EndCreateSecurityTokenRequest.cs
- Int16Storage.cs
- KnownBoxes.cs
- WebBrowserHelper.cs
- TaiwanCalendar.cs
- Int16Converter.cs
- HMACMD5.cs
- RootContext.cs
- AutomationEvent.cs
- RIPEMD160Managed.cs
- SafeMILHandle.cs
- FileLoadException.cs
- AVElementHelper.cs
- UiaCoreProviderApi.cs
- TimelineClockCollection.cs
- ObjectSet.cs
- _BasicClient.cs
- SymbolType.cs
- WebPartCloseVerb.cs
- RegexTree.cs
- MsmqHostedTransportConfiguration.cs
- BoundPropertyEntry.cs
- RemotingAttributes.cs
- Context.cs
- TextChange.cs
- RsaSecurityKey.cs
- TextRunProperties.cs
- BookmarkWorkItem.cs
- MimeMapping.cs
- KoreanLunisolarCalendar.cs
- TableItemProviderWrapper.cs
- TextBoxAutoCompleteSourceConverter.cs
- PageSettings.cs
- RoutedEventValueSerializer.cs
- Tuple.cs
- RC2CryptoServiceProvider.cs
- AxHostDesigner.cs
- PriorityRange.cs
- ShortcutKeysEditor.cs
- AtomEntry.cs
- FontFamilyConverter.cs
- RelationshipManager.cs
- WebPartDeleteVerb.cs
- SinglePageViewer.cs
- PersonalizationEntry.cs
- QueryStringParameter.cs
- DocumentPaginator.cs
- OracleCommandSet.cs
- IntSecurity.cs
- UrlPath.cs
- OperatorExpressions.cs
- View.cs
- CapiSymmetricAlgorithm.cs
- CapiHashAlgorithm.cs
- ProcessStartInfo.cs
- XmlNode.cs
- AuthenticationConfig.cs
- OrderByBuilder.cs
- AssociationTypeEmitter.cs
- ClientUtils.cs
- BamlBinaryWriter.cs
- SqlTypeConverter.cs
- CookieHandler.cs
- SystemEvents.cs
- MobileControlBuilder.cs
- CaseExpr.cs
- Substitution.cs
- DataControlCommands.cs
- SizeChangedInfo.cs
- userdatakeys.cs
- ContentDisposition.cs
- SmtpNtlmAuthenticationModule.cs
- sqlmetadatafactory.cs
- WebConfigurationFileMap.cs
- FloaterBaseParagraph.cs
- DocumentPageTextView.cs
- TemplateControlBuildProvider.cs
- HMACSHA256.cs
- HtmlInputSubmit.cs
- SecurityState.cs
- UIPermission.cs
- LinqDataSource.cs
- XmlSchemaExporter.cs
- ToolStripContentPanelDesigner.cs
- Atom10FormatterFactory.cs
- FontSizeConverter.cs
- RelatedView.cs
- XPathSingletonIterator.cs
- RecognitionResult.cs
- LoggedException.cs
- EventLogEntry.cs
- IndentedWriter.cs
- OrderByBuilder.cs
- ConfigurationLockCollection.cs
- BitmapCacheBrush.cs