Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- PatternMatcher.cs
- EntityViewContainer.cs
- HttpException.cs
- XmlObjectSerializerContext.cs
- DataGridViewCheckBoxColumn.cs
- StrokeCollection2.cs
- WmiEventSink.cs
- XmlSignatureManifest.cs
- MetaModel.cs
- SafeFindHandle.cs
- ResXResourceSet.cs
- ListItemCollection.cs
- ListParaClient.cs
- XmlSchemaSimpleContent.cs
- Pkcs9Attribute.cs
- ScrollableControl.cs
- BackStopAuthenticationModule.cs
- CollectionChange.cs
- RectKeyFrameCollection.cs
- SiteMapSection.cs
- PhoneCall.cs
- EndOfStreamException.cs
- FlatButtonAppearance.cs
- FrugalMap.cs
- SQLInt16.cs
- ErrorFormatterPage.cs
- NativeMethods.cs
- PeerNameResolver.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- TemplateControlCodeDomTreeGenerator.cs
- SqlInfoMessageEvent.cs
- Flattener.cs
- TPLETWProvider.cs
- EmptyEnumerable.cs
- WebPartManager.cs
- DeclarativeCatalogPart.cs
- XmlComment.cs
- XPathMessageFilter.cs
- SliderAutomationPeer.cs
- BevelBitmapEffect.cs
- Int32Animation.cs
- AutomationPropertyInfo.cs
- WebPartRestoreVerb.cs
- FunctionDetailsReader.cs
- ClearTypeHintValidation.cs
- ImageButton.cs
- AdornerPresentationContext.cs
- LeaseManager.cs
- ObjectListTitleAttribute.cs
- UnauthorizedAccessException.cs
- InputChannelBinder.cs
- SpellCheck.cs
- LogicalExpressionTypeConverter.cs
- CodeDirectoryCompiler.cs
- JsonSerializer.cs
- LicenseException.cs
- DelegateSerializationHolder.cs
- DeleteIndexBinder.cs
- SQLStringStorage.cs
- XmlChoiceIdentifierAttribute.cs
- SafeNativeMethodsMilCoreApi.cs
- AsyncStreamReader.cs
- _ChunkParse.cs
- Monitor.cs
- AssociationSetEnd.cs
- GenericParameterDataContract.cs
- TextParagraph.cs
- QilIterator.cs
- FilterEventArgs.cs
- MediaPlayer.cs
- RepeaterItem.cs
- HeaderCollection.cs
- TextBoxAutomationPeer.cs
- OdbcException.cs
- SQLByteStorage.cs
- RenderCapability.cs
- FieldBuilder.cs
- HtmlHead.cs
- HostVisual.cs
- _AutoWebProxyScriptEngine.cs
- TraceProvider.cs
- CommandField.cs
- BinaryNode.cs
- TableLayoutPanelCellPosition.cs
- ListViewDesigner.cs
- ChangeDirector.cs
- Control.cs
- ParenthesizePropertyNameAttribute.cs
- ServiceNameElementCollection.cs
- ClientUtils.cs
- WindowsFormsHostAutomationPeer.cs
- WebBrowsableAttribute.cs
- CustomAttributeBuilder.cs
- MulticastDelegate.cs
- ParameterCollection.cs
- SelectionListDesigner.cs
- UnaryNode.cs
- BaseCollection.cs
- ProofTokenCryptoHandle.cs
- TextBoxRenderer.cs