Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / Command.cs / 1305376 / Command.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents eSQL command as node. /// internal sealed class Command : Node { private readonly NodeList_namespaceImportList; private readonly Statement _statement; /// /// Initializes eSQL command. /// /// optional namespace imports /// command statement internal Command(NodeListnsImportList, Statement statement) { _namespaceImportList = nsImportList; _statement = statement; } /// /// Returns optional namespace imports. May be null. /// internal NodeListNamespaceImportList { get { return _namespaceImportList; } } /// /// Returns command statement. /// internal Statement Statement { get { return _statement; } } } ////// Represents base class for the following statements: /// - QueryStatement /// - InsertStatement /// - UpdateStatement /// - DeleteStatement /// internal abstract class Statement : Node { } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql.AST { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// Represents eSQL command as node. /// internal sealed class Command : Node { private readonly NodeList_namespaceImportList; private readonly Statement _statement; /// /// Initializes eSQL command. /// /// optional namespace imports /// command statement internal Command(NodeListnsImportList, Statement statement) { _namespaceImportList = nsImportList; _statement = statement; } /// /// Returns optional namespace imports. May be null. /// internal NodeListNamespaceImportList { get { return _namespaceImportList; } } /// /// Returns command statement. /// internal Statement Statement { get { return _statement; } } } ////// Represents base class for the following statements: /// - QueryStatement /// - InsertStatement /// - UpdateStatement /// - DeleteStatement /// internal abstract class Statement : Node { } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataColumnMapping.cs
- InstanceDescriptor.cs
- XmlSubtreeReader.cs
- RolePrincipal.cs
- TabletDevice.cs
- PointF.cs
- NotCondition.cs
- RepeatBehaviorConverter.cs
- PermissionRequestEvidence.cs
- Model3D.cs
- OracleParameter.cs
- ProfileService.cs
- StrongNameUtility.cs
- SettingsProviderCollection.cs
- MultipartIdentifier.cs
- ResolveMatchesMessage11.cs
- SplineQuaternionKeyFrame.cs
- StatusInfoItem.cs
- PassportAuthenticationEventArgs.cs
- WindowsGraphics2.cs
- StackOverflowException.cs
- HTMLTagNameToTypeMapper.cs
- TreeNodeMouseHoverEvent.cs
- ParameterToken.cs
- WorkItem.cs
- BindingListCollectionView.cs
- Automation.cs
- ListMarkerLine.cs
- Guid.cs
- SHA256Cng.cs
- WhileDesigner.xaml.cs
- AttributeExtensions.cs
- StopStoryboard.cs
- TraceUtils.cs
- xmlsaver.cs
- ComponentSerializationService.cs
- CompiledELinqQueryState.cs
- TypeBuilderInstantiation.cs
- RenderingEventArgs.cs
- DataServiceException.cs
- RouteCollection.cs
- XsltSettings.cs
- SystemMulticastIPAddressInformation.cs
- WebPartsPersonalization.cs
- ObjectQuery.cs
- TextEndOfLine.cs
- TogglePattern.cs
- DockEditor.cs
- DocumentGridPage.cs
- OpenTypeMethods.cs
- IBuiltInEvidence.cs
- ToolStripDropTargetManager.cs
- ClientData.cs
- Span.cs
- AttributeXamlType.cs
- ProxyFragment.cs
- TimersDescriptionAttribute.cs
- StateElementCollection.cs
- ISessionStateStore.cs
- XmlSchemaDocumentation.cs
- WebAdminConfigurationHelper.cs
- CuspData.cs
- ListViewPagedDataSource.cs
- XPathNodeList.cs
- HtmlContainerControl.cs
- WebConvert.cs
- ZoneLinkButton.cs
- SystemBrushes.cs
- DataExpression.cs
- UrlAuthFailedErrorFormatter.cs
- ConfigurationValue.cs
- ChooseAction.cs
- ListViewPagedDataSource.cs
- UpdateException.cs
- ClientConfigPaths.cs
- HashSetDebugView.cs
- RijndaelCryptoServiceProvider.cs
- BufferModesCollection.cs
- BitConverter.cs
- LayoutTableCell.cs
- HtmlInputButton.cs
- SignalGate.cs
- SerializerWriterEventHandlers.cs
- DeviceFiltersSection.cs
- KeyMatchBuilder.cs
- SqlTriggerAttribute.cs
- BamlLocalizabilityResolver.cs
- EntityTypeBase.cs
- TextParagraphCache.cs
- PerspectiveCamera.cs
- MultipleViewPattern.cs
- HeaderCollection.cs
- ActivityCollectionMarkupSerializer.cs
- GenerateScriptTypeAttribute.cs
- DoubleIndependentAnimationStorage.cs
- ControlPropertyNameConverter.cs
- BitmapEffectState.cs
- DataGridViewRowPrePaintEventArgs.cs
- ImageInfo.cs
- ReadOnlyHierarchicalDataSourceView.cs