Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / AST / BuiltInExpr.cs / 1305376 / BuiltInExpr.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; using System.Diagnostics; ////// Defines the function class of builtin expressions. /// internal enum BuiltInKind { And, Or, Not, Cast, OfType, Treat, IsOf, Union, UnionAll, Intersect, Overlaps, AnyElement, Element, Except, Exists, Flatten, In, NotIn, Distinct, IsNull, IsNotNull, Like, Equal, NotEqual, LessEqual, LessThan, GreaterThan, GreaterEqual, Plus, Minus, Multiply, Divide, Modulus, UnaryMinus, UnaryPlus, Between, NotBetween } ////// Represents a builtin expression ast node. /// internal sealed class BuiltInExpr : Node { private BuiltInExpr(BuiltInKind kind, string name) { Kind = kind; Name = name.ToUpperInvariant(); } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1) : this(kind, name) { ArgCount = 1; Arg1 = arg1; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2) : this(kind, name) { ArgCount = 2; Arg1 = arg1; Arg2 = arg2; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2, Node arg3) : this(kind, name) { ArgCount = 3; Arg1 = arg1; Arg2 = arg2; Arg3 = arg3; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2, Node arg3, Node arg4) : this(kind, name) { ArgCount = 4; Arg1 = arg1; Arg2 = arg2; Arg3 = arg3; Arg4 = arg4; } internal readonly BuiltInKind Kind; internal readonly string Name; internal readonly int ArgCount; internal readonly Node Arg1; internal readonly Node Arg2; internal readonly Node Arg3; internal readonly Node Arg4; } } // 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; using System.Diagnostics; ////// Defines the function class of builtin expressions. /// internal enum BuiltInKind { And, Or, Not, Cast, OfType, Treat, IsOf, Union, UnionAll, Intersect, Overlaps, AnyElement, Element, Except, Exists, Flatten, In, NotIn, Distinct, IsNull, IsNotNull, Like, Equal, NotEqual, LessEqual, LessThan, GreaterThan, GreaterEqual, Plus, Minus, Multiply, Divide, Modulus, UnaryMinus, UnaryPlus, Between, NotBetween } ////// Represents a builtin expression ast node. /// internal sealed class BuiltInExpr : Node { private BuiltInExpr(BuiltInKind kind, string name) { Kind = kind; Name = name.ToUpperInvariant(); } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1) : this(kind, name) { ArgCount = 1; Arg1 = arg1; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2) : this(kind, name) { ArgCount = 2; Arg1 = arg1; Arg2 = arg2; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2, Node arg3) : this(kind, name) { ArgCount = 3; Arg1 = arg1; Arg2 = arg2; Arg3 = arg3; } internal BuiltInExpr(BuiltInKind kind, string name, Node arg1, Node arg2, Node arg3, Node arg4) : this(kind, name) { ArgCount = 4; Arg1 = arg1; Arg2 = arg2; Arg3 = arg3; Arg4 = arg4; } internal readonly BuiltInKind Kind; internal readonly string Name; internal readonly int ArgCount; internal readonly Node Arg1; internal readonly Node Arg2; internal readonly Node Arg3; internal readonly Node Arg4; } } // 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
- BulletedListEventArgs.cs
- ObjectDataSourceSelectingEventArgs.cs
- UriScheme.cs
- NestedContainer.cs
- HwndSubclass.cs
- RuntimeWrappedException.cs
- XhtmlBasicValidationSummaryAdapter.cs
- InvalidComObjectException.cs
- ResourcePart.cs
- SafeTimerHandle.cs
- BitmapDownload.cs
- SvcMapFile.cs
- OrderedDictionaryStateHelper.cs
- ItemChangedEventArgs.cs
- ValidationError.cs
- DispatchWrapper.cs
- PropertyToken.cs
- CodeGroup.cs
- HitTestWithPointDrawingContextWalker.cs
- XmlFormatReaderGenerator.cs
- StaticDataManager.cs
- UnitySerializationHolder.cs
- RegistryPermission.cs
- MailAddress.cs
- HttpClientChannel.cs
- FileDialogCustomPlacesCollection.cs
- DataGridViewRowsAddedEventArgs.cs
- CorrelationTokenTypeConvertor.cs
- AutomationIdentifierGuids.cs
- ParenthesizePropertyNameAttribute.cs
- SystemException.cs
- AppDomainUnloadedException.cs
- PerformanceCounterManager.cs
- LineServicesRun.cs
- InvalidAsynchronousStateException.cs
- ParameterSubsegment.cs
- GreenMethods.cs
- Stack.cs
- _NTAuthentication.cs
- RegisteredDisposeScript.cs
- CompleteWizardStep.cs
- ArrangedElementCollection.cs
- connectionpool.cs
- FileRecordSequence.cs
- SqlBuffer.cs
- METAHEADER.cs
- SmiTypedGetterSetter.cs
- MiniLockedBorderGlyph.cs
- ListItem.cs
- ControlParser.cs
- NativeObjectSecurity.cs
- SecurityHeaderLayout.cs
- HttpPostedFile.cs
- UserNamePasswordValidator.cs
- Lock.cs
- TypefaceMap.cs
- CounterCreationDataCollection.cs
- StreamUpdate.cs
- InvalidAsynchronousStateException.cs
- CssTextWriter.cs
- UnsafeNativeMethods.cs
- MemberPathMap.cs
- FileReader.cs
- SettingsAttributes.cs
- InitializerFacet.cs
- ClientUtils.cs
- TextRange.cs
- WebBrowsableAttribute.cs
- RoutedUICommand.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- NetSectionGroup.cs
- FunctionImportMapping.cs
- MemberExpression.cs
- StringUtil.cs
- OperatingSystem.cs
- OutputWindow.cs
- ToolStripSettings.cs
- PointAnimation.cs
- InfoCardBaseException.cs
- VisualTreeHelper.cs
- Int16Converter.cs
- BulletChrome.cs
- BamlReader.cs
- CacheMemory.cs
- Attributes.cs
- ConnectionPoint.cs
- ListViewItemEventArgs.cs
- SystemTcpStatistics.cs
- SmtpTransport.cs
- PathSegment.cs
- Vector3DKeyFrameCollection.cs
- TextSchema.cs
- ProfileService.cs
- AssemblyBuilderData.cs
- NetworkStream.cs
- SimpleWorkerRequest.cs
- ListViewInsertedEventArgs.cs
- RootBrowserWindowAutomationPeer.cs
- WinInetCache.cs
- StyleSheetComponentEditor.cs