Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / BooleanExpr.cs / 1 / BooleanExpr.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Xml.Xsl; using System.Diagnostics; using System.Globalization; internal sealed class BooleanExpr : ValueQuery { private Query opnd1; private Query opnd2; private bool isOr; public BooleanExpr(Operator.Op op, Query opnd1, Query opnd2) { Debug.Assert(op == Operator.Op.AND || op == Operator.Op.OR); Debug.Assert(opnd1 != null && opnd2 != null); if (opnd1.StaticType != XPathResultType.Boolean) { opnd1 = new BooleanFunctions(Function.FunctionType.FuncBoolean, opnd1); } if (opnd2.StaticType != XPathResultType.Boolean) { opnd2 = new BooleanFunctions(Function.FunctionType.FuncBoolean, opnd2); } this.opnd1 = opnd1; this.opnd2 = opnd2; isOr = (op == Operator.Op.OR); } private BooleanExpr(BooleanExpr other) : base(other) { this.opnd1 = Clone(other.opnd1); this.opnd2 = Clone(other.opnd2); this.isOr = other.isOr; } public override void SetXsltContext(XsltContext context){ opnd1.SetXsltContext(context); opnd2.SetXsltContext(context); } public override object Evaluate(XPathNodeIterator nodeIterator) { object n1 = opnd1.Evaluate(nodeIterator); if (((bool) n1) == isOr) { return n1; } return opnd2.Evaluate(nodeIterator); } public override XPathNodeIterator Clone() { return new BooleanExpr(this); } public override XPathResultType StaticType { get { return XPathResultType.Boolean; } } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("op", (isOr ? Operator.Op.OR : Operator.Op.AND).ToString()); opnd1.PrintQuery(w); opnd2.PrintQuery(w); w.WriteEndElement(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NumberFormatter.cs
- ColumnReorderedEventArgs.cs
- TextEffect.cs
- CurrencyManager.cs
- AspCompat.cs
- QuadraticBezierSegment.cs
- ValueUnavailableException.cs
- SHA256.cs
- PathBox.cs
- WindowsTitleBar.cs
- X509Utils.cs
- CompilationSection.cs
- _LazyAsyncResult.cs
- SqlDataSourceSelectingEventArgs.cs
- DisplayMemberTemplateSelector.cs
- XPathExpr.cs
- TableCell.cs
- Rectangle.cs
- QueryCursorEventArgs.cs
- GeneralTransform3DCollection.cs
- DataGridRowEventArgs.cs
- Accessors.cs
- LoginUtil.cs
- ClientData.cs
- QuaternionAnimationUsingKeyFrames.cs
- OleStrCAMarshaler.cs
- System.Data.OracleClient_BID.cs
- SqlConnection.cs
- DataServiceHostWrapper.cs
- ChtmlLinkAdapter.cs
- HtmlInputCheckBox.cs
- DockAndAnchorLayout.cs
- PcmConverter.cs
- CodeObjectCreateExpression.cs
- RotateTransform3D.cs
- RegistryExceptionHelper.cs
- Currency.cs
- DataGridViewBand.cs
- SchemaEntity.cs
- ToolStripCodeDomSerializer.cs
- ListViewInsertEventArgs.cs
- PenLineCapValidation.cs
- BufferModeSettings.cs
- ByteKeyFrameCollection.cs
- TopClause.cs
- DefaultIfEmptyQueryOperator.cs
- ToolbarAUtomationPeer.cs
- HtmlTextBoxAdapter.cs
- CaseInsensitiveHashCodeProvider.cs
- SecurityTokenResolver.cs
- TextDecorations.cs
- GreenMethods.cs
- ImageIndexConverter.cs
- SvcMapFile.cs
- Renderer.cs
- WmiInstallComponent.cs
- RelatedCurrencyManager.cs
- WebRequestModuleElementCollection.cs
- RoleManagerEventArgs.cs
- ButtonColumn.cs
- ScriptControlManager.cs
- _FixedSizeReader.cs
- DesignerActionPropertyItem.cs
- Geometry.cs
- WrappedIUnknown.cs
- DocumentViewerAutomationPeer.cs
- VariableQuery.cs
- NumericExpr.cs
- TimeEnumHelper.cs
- DataRelationPropertyDescriptor.cs
- ObjectAnimationBase.cs
- PeerNameRecord.cs
- MethodRental.cs
- DesignTimeTemplateParser.cs
- ZipIOLocalFileHeader.cs
- StackSpiller.Generated.cs
- Soap11ServerProtocol.cs
- RegexCode.cs
- ObservableDictionary.cs
- PropertyBuilder.cs
- HeaderLabel.cs
- _ContextAwareResult.cs
- ImageAttributes.cs
- HMACSHA1.cs
- XmlAnyElementAttributes.cs
- TextEffect.cs
- ConnectionManagementElement.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- ClientTargetCollection.cs
- OpCellTreeNode.cs
- ArrayConverter.cs
- LinkLabel.cs
- ListItemConverter.cs
- ObjectSecurityT.cs
- TemplateControlCodeDomTreeGenerator.cs
- ParserContext.cs
- HttpPostedFile.cs
- cache.cs
- GeneratedCodeAttribute.cs
- SpecularMaterial.cs