Code:
/ DotNET / DotNET / 8.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
- Msec.cs
- AssociationTypeEmitter.cs
- RuntimeCompatibilityAttribute.cs
- PeerName.cs
- SystemIPGlobalStatistics.cs
- ElementHostAutomationPeer.cs
- GradientStop.cs
- PeerObject.cs
- PreloadHost.cs
- XAMLParseException.cs
- DocumentSignatureManager.cs
- TextEmbeddedObject.cs
- MessageBuffer.cs
- IpcServerChannel.cs
- XmlIlGenerator.cs
- MarkedHighlightComponent.cs
- COM2PropertyDescriptor.cs
- ParseChildrenAsPropertiesAttribute.cs
- WebRequestModuleElement.cs
- SendingRequestEventArgs.cs
- WebPartTransformerCollection.cs
- DbConnectionPoolIdentity.cs
- ItemsPanelTemplate.cs
- DocumentProperties.cs
- TreeWalker.cs
- PageThemeBuildProvider.cs
- _ConnectionGroup.cs
- Setter.cs
- SqlColumnizer.cs
- UIElementIsland.cs
- DelegatingStream.cs
- ToggleProviderWrapper.cs
- TransformValueSerializer.cs
- QueryPageSettingsEventArgs.cs
- EncoderFallback.cs
- ListViewAutomationPeer.cs
- mediaeventargs.cs
- ProtectedConfigurationSection.cs
- BitmapMetadataEnumerator.cs
- Vector3DIndependentAnimationStorage.cs
- TransactionTable.cs
- basemetadatamappingvisitor.cs
- DynamicQueryableWrapper.cs
- Polyline.cs
- InvalidProgramException.cs
- XmlSerializerNamespaces.cs
- SqlDataSourceCache.cs
- StyleModeStack.cs
- GlobalItem.cs
- RewritingPass.cs
- Freezable.cs
- NativeMethodsOther.cs
- UrlMappingsModule.cs
- BufferedReceiveElement.cs
- Translator.cs
- TaskForm.cs
- CorrelationInitializer.cs
- UIPermission.cs
- GroupStyle.cs
- TextViewSelectionProcessor.cs
- WebControlsSection.cs
- RegularExpressionValidator.cs
- ScaleTransform.cs
- URIFormatException.cs
- ConnectionPointCookie.cs
- MultiView.cs
- LocatorBase.cs
- CodePageEncoding.cs
- Barrier.cs
- MultiByteCodec.cs
- CellTreeNode.cs
- ColumnReorderedEventArgs.cs
- KeySpline.cs
- QilInvokeEarlyBound.cs
- PermissionSet.cs
- StrongNameIdentityPermission.cs
- EventLogLink.cs
- HttpMethodAttribute.cs
- PrivilegeNotHeldException.cs
- CanExecuteRoutedEventArgs.cs
- SupportsEventValidationAttribute.cs
- Stack.cs
- ProfileParameter.cs
- followingsibling.cs
- MSAANativeProvider.cs
- NavigationPropertyEmitter.cs
- RightsManagementPermission.cs
- NetworkAddressChange.cs
- ListControl.cs
- RoutedUICommand.cs
- ObjectNavigationPropertyMapping.cs
- DropDownButton.cs
- VerticalAlignConverter.cs
- MaterialGroup.cs
- BitmapSourceSafeMILHandle.cs
- _ShellExpression.cs
- DateTimeConstantAttribute.cs
- MILUtilities.cs
- SqlAggregateChecker.cs
- DataSourceDescriptorCollection.cs