Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / BooleanExpr.cs / 1305376 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectPersistData.cs
- ProfileModule.cs
- PolyBezierSegment.cs
- NestedContainer.cs
- Focus.cs
- OdbcConnectionOpen.cs
- CatalogZoneBase.cs
- DummyDataSource.cs
- CapabilitiesRule.cs
- ServiceDescription.cs
- SQLRoleProvider.cs
- PreviewPageInfo.cs
- FileAuthorizationModule.cs
- RelationshipDetailsCollection.cs
- SchemaType.cs
- DebuggerService.cs
- MenuEventArgs.cs
- BoundField.cs
- DefaultHttpHandler.cs
- ZipFileInfoCollection.cs
- DataComponentNameHandler.cs
- FilterEventArgs.cs
- DataRecordInfo.cs
- BuilderElements.cs
- Stroke2.cs
- RequestFactory.cs
- X509InitiatorCertificateServiceElement.cs
- NewArrayExpression.cs
- RegexMatchCollection.cs
- ExternalDataExchangeService.cs
- DataContext.cs
- HttpInputStream.cs
- CodeCompileUnit.cs
- OleDbConnectionInternal.cs
- Ops.cs
- ManualResetEvent.cs
- mactripleDES.cs
- TemplateParser.cs
- DataControlLinkButton.cs
- _ConnectionGroup.cs
- Asn1IntegerConverter.cs
- PointHitTestResult.cs
- ProgressiveCrcCalculatingStream.cs
- TextBoxAutoCompleteSourceConverter.cs
- NameGenerator.cs
- XmlUtil.cs
- AvtEvent.cs
- StrongNameMembershipCondition.cs
- IISUnsafeMethods.cs
- HostedElements.cs
- RuleDefinitions.cs
- VectorCollectionConverter.cs
- PermissionAttributes.cs
- Int32Rect.cs
- Scene3D.cs
- DecimalFormatter.cs
- RemotingConfigParser.cs
- XmlSchema.cs
- SingleAnimationBase.cs
- XPathNode.cs
- SpinLock.cs
- EventLevel.cs
- DefaultEventAttribute.cs
- OdbcPermission.cs
- WindowsTokenRoleProvider.cs
- SystemThemeKey.cs
- SqlFormatter.cs
- MonthChangedEventArgs.cs
- BitVector32.cs
- OrthographicCamera.cs
- SponsorHelper.cs
- login.cs
- DataGridViewHeaderCell.cs
- DataGridViewRowsRemovedEventArgs.cs
- MenuItem.cs
- ArrayTypeMismatchException.cs
- TextCompositionEventArgs.cs
- ValidationErrorEventArgs.cs
- VarInfo.cs
- DispatcherFrame.cs
- FormView.cs
- DataControlField.cs
- SiteMapHierarchicalDataSourceView.cs
- GlyphManager.cs
- altserialization.cs
- CommandLibraryHelper.cs
- HelpFileFileNameEditor.cs
- PointCollectionConverter.cs
- TextComposition.cs
- FixedTextPointer.cs
- ListItemCollection.cs
- CatalogPart.cs
- Function.cs
- FunctionParameter.cs
- AffineTransform3D.cs
- RegionIterator.cs
- DataViewSettingCollection.cs
- UIPermission.cs
- CodeArrayCreateExpression.cs
- ContentType.cs