Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / AstNode.cs / 1305376 / AstNode.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 base class for nodes in the eSQL abstract syntax tree OM. /// internal abstract class Node { private ErrorContext _errCtx = new ErrorContext(); internal Node() { } internal Node(string commandText, int inputPosition) { _errCtx.CommandText = commandText; _errCtx.InputPosition = inputPosition; } ////// Ast Node error context. /// internal ErrorContext ErrCtx { get { return _errCtx; } set { _errCtx = value; } } } ////// An ast node represents a generic list of ast nodes. /// internal sealed class NodeList: Node, System.Collections.Generic.IEnumerable where T : Node { private readonly List _list = new List (); /// /// Default constructor. /// internal NodeList() { } ////// Initializes adding one item to the list. /// /// expression internal NodeList(T item) { _list.Add(item); } ////// Add an item to the list, return the updated list. /// internal NodeListAdd(T item) { _list.Add(item); return this; } /// /// Returns the number of elements in the list. /// internal int Count { get { return _list.Count; } } ////// Indexer to the list entries. /// /// integer position of the element in the list internal T this[int index] { get { return _list[index]; } } #region GetEnumerator System.Collections.Generic.IEnumeratorSystem.Collections.Generic.IEnumerable .GetEnumerator() { return _list.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return _list.GetEnumerator(); } #endregion } } // 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 base class for nodes in the eSQL abstract syntax tree OM. /// internal abstract class Node { private ErrorContext _errCtx = new ErrorContext(); internal Node() { } internal Node(string commandText, int inputPosition) { _errCtx.CommandText = commandText; _errCtx.InputPosition = inputPosition; } ////// Ast Node error context. /// internal ErrorContext ErrCtx { get { return _errCtx; } set { _errCtx = value; } } } ////// An ast node represents a generic list of ast nodes. /// internal sealed class NodeList: Node, System.Collections.Generic.IEnumerable where T : Node { private readonly List _list = new List (); /// /// Default constructor. /// internal NodeList() { } ////// Initializes adding one item to the list. /// /// expression internal NodeList(T item) { _list.Add(item); } ////// Add an item to the list, return the updated list. /// internal NodeListAdd(T item) { _list.Add(item); return this; } /// /// Returns the number of elements in the list. /// internal int Count { get { return _list.Count; } } ////// Indexer to the list entries. /// /// integer position of the element in the list internal T this[int index] { get { return _list[index]; } } #region GetEnumerator System.Collections.Generic.IEnumeratorSystem.Collections.Generic.IEnumerable .GetEnumerator() { return _list.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return _list.GetEnumerator(); } #endregion } } // 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
- XmlKeywords.cs
- MailWebEventProvider.cs
- Form.cs
- Message.cs
- SharedPerformanceCounter.cs
- ConfigurationValidatorBase.cs
- MaskedTextBoxTextEditor.cs
- XmlDocumentSchema.cs
- UnsafeNativeMethods.cs
- CountAggregationOperator.cs
- XsdDataContractImporter.cs
- ProcessingInstructionAction.cs
- FontFamilyConverter.cs
- RuntimeResourceSet.cs
- DecimalSumAggregationOperator.cs
- ManifestResourceInfo.cs
- UpdatePanelTriggerCollection.cs
- AsmxEndpointPickerExtension.cs
- Command.cs
- translator.cs
- Paragraph.cs
- FileChangesMonitor.cs
- DesigntimeLicenseContextSerializer.cs
- NestPullup.cs
- DmlSqlGenerator.cs
- RowToParametersTransformer.cs
- ManifestResourceInfo.cs
- DropTarget.cs
- CharConverter.cs
- ItemCheckedEvent.cs
- ListItemParagraph.cs
- EntityModelBuildProvider.cs
- WindowsListViewScroll.cs
- CompoundFileDeflateTransform.cs
- SafeEventLogReadHandle.cs
- ModelTreeEnumerator.cs
- Repeater.cs
- AddIn.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- HttpMethodConstraint.cs
- ItemList.cs
- BitmapEffectGeneralTransform.cs
- FrameworkContentElement.cs
- StaticExtensionConverter.cs
- OperationContractAttribute.cs
- JapaneseLunisolarCalendar.cs
- DataSpaceManager.cs
- IUnknownConstantAttribute.cs
- XamlValidatingReader.cs
- HMACMD5.cs
- ErrorFormatterPage.cs
- ValueUnavailableException.cs
- XPathAncestorQuery.cs
- TimeSpan.cs
- FormViewPageEventArgs.cs
- Token.cs
- HttpWriter.cs
- StylesEditorDialog.cs
- RuleRef.cs
- DrawingContextDrawingContextWalker.cs
- ClientFormsAuthenticationCredentials.cs
- uribuilder.cs
- ApplicationId.cs
- StickyNote.cs
- GetWinFXPath.cs
- RequestCacheEntry.cs
- ParameterBuilder.cs
- BufferedGraphics.cs
- DataGridColumnHeaderItemAutomationPeer.cs
- _HeaderInfo.cs
- CodeDomComponentSerializationService.cs
- EditorPart.cs
- DataColumnMappingCollection.cs
- ChangePassword.cs
- UIntPtr.cs
- DataReceivedEventArgs.cs
- ReadOnlyHierarchicalDataSourceView.cs
- PrimitiveOperationFormatter.cs
- Line.cs
- PathSegment.cs
- ImagingCache.cs
- Collection.cs
- SqlDataSourceEnumerator.cs
- FileDataSourceCache.cs
- DataServiceHostFactory.cs
- Formatter.cs
- ZoomPercentageConverter.cs
- XsdDuration.cs
- MultiByteCodec.cs
- DataBinder.cs
- TableParaClient.cs
- SkinBuilder.cs
- ValidateNames.cs
- XmlDataLoader.cs
- safePerfProviderHandle.cs
- DiscoveryDocumentSerializer.cs
- SignatureGenerator.cs
- MappedMetaModel.cs
- SingleResultAttribute.cs
- BitStack.cs