Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //[....] //----------------------------------------------------------------------------- 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
- SQLInt16Storage.cs
- Msmq4PoisonHandler.cs
- TextRunTypographyProperties.cs
- EntityCommandDefinition.cs
- BuildProviderCollection.cs
- SynchronizingStream.cs
- DesignerVerbToolStripMenuItem.cs
- InterleavedZipPartStream.cs
- CopyAttributesAction.cs
- _SecureChannel.cs
- ColumnHeader.cs
- TypeDescriptionProvider.cs
- NativeMethods.cs
- XsltContext.cs
- BitmapEffectDrawing.cs
- RelationshipDetailsCollection.cs
- LinkArea.cs
- Exceptions.cs
- DriveInfo.cs
- XmlUtil.cs
- AdRotator.cs
- StandardBindingImporter.cs
- WebPartConnection.cs
- ListViewTableRow.cs
- BeginEvent.cs
- IdnMapping.cs
- WindowsScrollBarBits.cs
- localization.cs
- EntityDataSourceUtil.cs
- DesignerContextDescriptor.cs
- NodeFunctions.cs
- ConsumerConnectionPointCollection.cs
- PolicyStatement.cs
- HtmlString.cs
- DomainConstraint.cs
- CompositeCollectionView.cs
- WorkItem.cs
- TraceContext.cs
- TabControlEvent.cs
- ServicePointManager.cs
- Rule.cs
- PointIndependentAnimationStorage.cs
- ImageIndexConverter.cs
- objectquery_tresulttype.cs
- Scene3D.cs
- DBParameter.cs
- SortedList.cs
- BitmapSource.cs
- StorageComplexPropertyMapping.cs
- ImageAnimator.cs
- WindowsRichEdit.cs
- BasicHttpBinding.cs
- CodeSnippetTypeMember.cs
- DataServiceRequest.cs
- BindingValueChangedEventArgs.cs
- TargetException.cs
- UniformGrid.cs
- IssuedTokenServiceElement.cs
- TextTreeRootTextBlock.cs
- XPathChildIterator.cs
- InstanceStoreQueryResult.cs
- EventSourceCreationData.cs
- WebBrowsableAttribute.cs
- BamlLocalizableResourceKey.cs
- LocatorPartList.cs
- MetadataCache.cs
- TypeSystem.cs
- EditorPart.cs
- EntityDataSourceChangingEventArgs.cs
- XmlBindingWorker.cs
- FixedNode.cs
- EarlyBoundInfo.cs
- WindowsTitleBar.cs
- ExtendedProperty.cs
- XmlCharType.cs
- DataGridViewRowCancelEventArgs.cs
- ProcessRequestAsyncResult.cs
- HMACSHA256.cs
- ExtensionQuery.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- XamlTypeMapperSchemaContext.cs
- ExitEventArgs.cs
- HebrewNumber.cs
- HeaderedContentControl.cs
- XmlSchemaSimpleTypeUnion.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- SystemEvents.cs
- TextContainer.cs
- EventLogPermissionEntryCollection.cs
- StateBag.cs
- IndexerNameAttribute.cs
- Selector.cs
- BufferModesCollection.cs
- QueryStringParameter.cs
- FrameworkContextData.cs
- CollectionBase.cs
- FormsAuthentication.cs
- Models.cs
- ServicePoint.cs
- ValueExpressions.cs