Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntity / System / Data / Common / EntitySql / BuiltInExpr.cs / 1 / BuiltInExpr.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// 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 ast expression node /// internal sealed class BuiltInExpr : Expr { private BuiltInKind _kind; private string _name; private ExprList_argList = new ExprList (); private BuiltInExpr( BuiltInKind kind, string name ) { _kind = kind; _name = name.ToUpperInvariant(); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1 ) : this(kind, name) { _argList.Add(arg1); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2 ) : this(kind, name, arg1) { _argList.Add(arg2); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2, Expr arg3 ) : this(kind, name, arg1, arg2) { _argList.Add(arg3); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2, Expr arg3, Expr arg4 ) : this(kind, name, arg1, arg2, arg3) { _argList.Add(arg4); } internal BuiltInKind Kind { get { return _kind; } set { _kind = value; } } internal string Name { get { return _name; } } internal ExprList ArgList { get { return _argList; } } internal Expr Arg1 { get { if (_argList.Count < 1) { return null; } return _argList[0]; } } internal Expr Arg2 { get { if (_argList.Count < 2) return null; return _argList[1]; } } internal int ArgCount { get { return ArgList.Count; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backup [....] //--------------------------------------------------------------------- namespace System.Data.Common.EntitySql { using System; using System.Globalization; using System.Collections; using System.Collections.Generic; ////// 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 ast expression node /// internal sealed class BuiltInExpr : Expr { private BuiltInKind _kind; private string _name; private ExprList_argList = new ExprList (); private BuiltInExpr( BuiltInKind kind, string name ) { _kind = kind; _name = name.ToUpperInvariant(); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1 ) : this(kind, name) { _argList.Add(arg1); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2 ) : this(kind, name, arg1) { _argList.Add(arg2); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2, Expr arg3 ) : this(kind, name, arg1, arg2) { _argList.Add(arg3); } internal BuiltInExpr( BuiltInKind kind, string name, Expr arg1, Expr arg2, Expr arg3, Expr arg4 ) : this(kind, name, arg1, arg2, arg3) { _argList.Add(arg4); } internal BuiltInKind Kind { get { return _kind; } set { _kind = value; } } internal string Name { get { return _name; } } internal ExprList ArgList { get { return _argList; } } internal Expr Arg1 { get { if (_argList.Count < 1) { return null; } return _argList[0]; } } internal Expr Arg2 { get { if (_argList.Count < 2) return null; return _argList[1]; } } internal int ArgCount { get { return ArgList.Count; } } } } // 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
- QueryAsyncResult.cs
- RectangleHotSpot.cs
- SendMailErrorEventArgs.cs
- Latin1Encoding.cs
- WebConfigurationHostFileChange.cs
- SpellerStatusTable.cs
- Predicate.cs
- MSAANativeProvider.cs
- DoubleMinMaxAggregationOperator.cs
- SapiAttributeParser.cs
- SapiRecognizer.cs
- CriticalHandle.cs
- HelpEvent.cs
- ClientReliableChannelBinder.cs
- MetaChildrenColumn.cs
- Messages.cs
- MimeTypeMapper.cs
- ModuleBuilderData.cs
- WebBrowserPermission.cs
- LicenseException.cs
- iisPickupDirectory.cs
- LineSegment.cs
- WindowsSolidBrush.cs
- AuthenticationConfig.cs
- SamlConstants.cs
- ResourceReferenceExpressionConverter.cs
- ItemCollection.cs
- WebResourceAttribute.cs
- ObfuscateAssemblyAttribute.cs
- GridErrorDlg.cs
- ScrollPattern.cs
- WebWorkflowRole.cs
- FileLevelControlBuilderAttribute.cs
- TextTrailingCharacterEllipsis.cs
- Point3D.cs
- DataStorage.cs
- FlowDocumentFormatter.cs
- ToolStripProgressBar.cs
- MenuItem.cs
- RowParagraph.cs
- ConfigurationValue.cs
- SafeSecurityHandles.cs
- shaper.cs
- TextAdaptor.cs
- EdmProperty.cs
- ConstantExpression.cs
- log.cs
- BinaryFormatterSinks.cs
- SplitterCancelEvent.cs
- DtdParser.cs
- XmlNodeReader.cs
- PolyBezierSegmentFigureLogic.cs
- Lease.cs
- TextBox.cs
- ReferenceEqualityComparer.cs
- SoapAttributeAttribute.cs
- CodeFieldReferenceExpression.cs
- StringSource.cs
- BufferModesCollection.cs
- WithStatement.cs
- EntityDataSourceWizardForm.cs
- ThaiBuddhistCalendar.cs
- grammarelement.cs
- updateconfighost.cs
- SiteMapDataSource.cs
- FieldNameLookup.cs
- HyperLinkField.cs
- DocobjHost.cs
- BaseParser.cs
- LocalizationComments.cs
- SpellerStatusTable.cs
- DataGridViewUtilities.cs
- TemplateField.cs
- MailDefinition.cs
- ICspAsymmetricAlgorithm.cs
- Literal.cs
- ToolboxItemAttribute.cs
- GlyphManager.cs
- NamespaceQuery.cs
- MimeWriter.cs
- JoinGraph.cs
- ConditionalWeakTable.cs
- ProcessHost.cs
- TableRowCollection.cs
- ConfigurationLocation.cs
- URL.cs
- TextEmbeddedObject.cs
- DropDownList.cs
- ControlCollection.cs
- InProcStateClientManager.cs
- Canonicalizers.cs
- TransformationRules.cs
- XPathNavigatorReader.cs
- UpdateCompiler.cs
- PointLightBase.cs
- ReadOnlyDictionary.cs
- FieldBuilder.cs
- PropertyRecord.cs
- StoryFragments.cs
- XmlQueryStaticData.cs