Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MergeFilterQuery.cs
- SmiMetaData.cs
- TextEffectResolver.cs
- SoapTypeAttribute.cs
- TypeNameParser.cs
- DynamicScriptObject.cs
- InputReportEventArgs.cs
- BaseDataBoundControl.cs
- BoundField.cs
- CqlParserHelpers.cs
- QuaternionAnimation.cs
- WebServiceResponseDesigner.cs
- FilterQuery.cs
- AppDomainCompilerProxy.cs
- DragDrop.cs
- AppManager.cs
- ReachObjectContext.cs
- EDesignUtil.cs
- ObjectMemberMapping.cs
- DirectoryInfo.cs
- DictionaryContent.cs
- TransformCryptoHandle.cs
- RuntimeHandles.cs
- MailMessageEventArgs.cs
- RegistryKey.cs
- GradientStop.cs
- SmtpNetworkElement.cs
- FixedSOMTableRow.cs
- RoamingStoreFileUtility.cs
- AxisAngleRotation3D.cs
- BuiltInPermissionSets.cs
- DataAdapter.cs
- ExecutionScope.cs
- LabelInfo.cs
- FormatterServices.cs
- ListDictionary.cs
- ConsumerConnectionPointCollection.cs
- NestedContainer.cs
- ButtonFieldBase.cs
- EmptyReadOnlyDictionaryInternal.cs
- DataBindEngine.cs
- SearchExpression.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- WebRequestModulesSection.cs
- EntitySetBase.cs
- RemotingSurrogateSelector.cs
- MetadataArtifactLoaderComposite.cs
- StrongNamePublicKeyBlob.cs
- Common.cs
- TextDecoration.cs
- XmlCodeExporter.cs
- SqlBooleanMismatchVisitor.cs
- Int16Converter.cs
- AsyncOperationLifetimeManager.cs
- DataSourceExpressionCollection.cs
- ViewCellRelation.cs
- PeerUnsafeNativeMethods.cs
- VisualTransition.cs
- WsatServiceAddress.cs
- CharKeyFrameCollection.cs
- TemplateModeChangedEventArgs.cs
- DiagnosticStrings.cs
- FileDetails.cs
- StorageEndPropertyMapping.cs
- SHA256.cs
- ConfigXmlText.cs
- MSHTMLHost.cs
- XmlSchemaSimpleContent.cs
- StdValidatorsAndConverters.cs
- DataTableMappingCollection.cs
- CaretElement.cs
- RepeatButton.cs
- Walker.cs
- ItemChangedEventArgs.cs
- SoapCommonClasses.cs
- DataSourceHelper.cs
- CellQuery.cs
- XmlObjectSerializerWriteContext.cs
- SpotLight.cs
- FormViewInsertedEventArgs.cs
- MouseActionConverter.cs
- _Semaphore.cs
- cryptoapiTransform.cs
- WebColorConverter.cs
- NamedPipeHostedTransportConfiguration.cs
- ExpressionParser.cs
- QuadraticBezierSegment.cs
- CompositeActivityTypeDescriptor.cs
- Win32Native.cs
- AssemblyBuilder.cs
- CustomAttributeBuilder.cs
- SqlAliaser.cs
- TimelineClockCollection.cs
- DataGridViewCellMouseEventArgs.cs
- SettingsPropertyValue.cs
- HtmlProps.cs
- ReadOnlyHierarchicalDataSource.cs
- ValueUtilsSmi.cs
- ProcessHostServerConfig.cs
- DockPatternIdentifiers.cs