Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / BooleanFunctions.cs / 2 / BooleanFunctions.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; using System.Diagnostics; using System.Globalization; using System.Xml.Xsl; using FT = MS.Internal.Xml.XPath.Function.FunctionType; internal sealed class BooleanFunctions : ValueQuery { Query arg; FT funcType; public BooleanFunctions(FT funcType, Query arg) { this.arg = arg; this.funcType = funcType; } private BooleanFunctions(BooleanFunctions other) : base(other) { this.arg = Clone(other.arg); this.funcType = other.funcType; } public override void SetXsltContext(XsltContext context) { if (arg != null) { arg.SetXsltContext(context); } } public override object Evaluate(XPathNodeIterator nodeIterator) { switch (funcType) { case FT.FuncBoolean : return toBoolean(nodeIterator); case FT.FuncNot : return Not(nodeIterator); case FT.FuncTrue : return true; case FT.FuncFalse : return false; case FT.FuncLang : return Lang(nodeIterator); } return false; } internal static bool toBoolean(double number) { return number != 0 && ! double.IsNaN(number); } internal static bool toBoolean(string str) { return str.Length > 0; } internal bool toBoolean(XPathNodeIterator nodeIterator) { object result = arg.Evaluate(nodeIterator); if (result is XPathNodeIterator) return arg.Advance() != null; if (result is string ) return toBoolean((string)result); if (result is double ) return toBoolean((double)result); if (result is bool ) return (bool)result; Debug.Assert(result is XPathNavigator, "Unknown value type"); return true; } public override XPathResultType StaticType { get { return XPathResultType.Boolean; } } private bool Not(XPathNodeIterator nodeIterator) { return ! (bool) arg.Evaluate(nodeIterator); } private bool Lang(XPathNodeIterator nodeIterator) { string str = arg.Evaluate(nodeIterator).ToString(); string lang = nodeIterator.Current.XmlLang; return ( lang.StartsWith(str, StringComparison.OrdinalIgnoreCase) && (lang.Length == str.Length || lang[str.Length] == '-') ); } public override XPathNodeIterator Clone() { return new BooleanFunctions(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", funcType.ToString()); if (arg != null) { arg.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
- WebPartUserCapability.cs
- ToolTipService.cs
- OleServicesContext.cs
- XmlNullResolver.cs
- ToolTip.cs
- XmlBinaryReader.cs
- IsolatedStorageException.cs
- CompressionTransform.cs
- DataObjectCopyingEventArgs.cs
- MimeImporter.cs
- WorkItem.cs
- AssemblyResolver.cs
- DataAdapter.cs
- BaseAutoFormat.cs
- GenerateScriptTypeAttribute.cs
- EpmSyndicationContentSerializer.cs
- DetailsViewPagerRow.cs
- TextServicesLoader.cs
- LateBoundChannelParameterCollection.cs
- TextEditorSpelling.cs
- FamilyMap.cs
- URLAttribute.cs
- webproxy.cs
- WS2007HttpBindingElement.cs
- X509CertificateCollection.cs
- SocketCache.cs
- XmlParserContext.cs
- Attachment.cs
- PipeException.cs
- StoryFragments.cs
- XmlSchemaAnyAttribute.cs
- SoapReflectionImporter.cs
- RtfToken.cs
- Context.cs
- ApplicationServiceHelper.cs
- AnonymousIdentificationModule.cs
- MetadataCacheItem.cs
- FlowLayoutSettings.cs
- EncoderBestFitFallback.cs
- FontUnit.cs
- XmlEventCache.cs
- SchemaInfo.cs
- DbParameterHelper.cs
- Closure.cs
- PrinterUnitConvert.cs
- TabItemAutomationPeer.cs
- ContractNamespaceAttribute.cs
- MatrixTransform3D.cs
- BaseTreeIterator.cs
- ControlPaint.cs
- DoubleStorage.cs
- XmlTextReaderImpl.cs
- HttpApplication.cs
- Dictionary.cs
- PinnedBufferMemoryStream.cs
- WindowsGraphicsWrapper.cs
- ValidatorUtils.cs
- DependencyObjectProvider.cs
- TouchDevice.cs
- TypeValidationEventArgs.cs
- GraphicsContainer.cs
- StorageSetMapping.cs
- MachineKeyValidationConverter.cs
- AspNetSynchronizationContext.cs
- BaseTemplateBuildProvider.cs
- ObjectManager.cs
- SortedDictionary.cs
- WebServiceEnumData.cs
- StorageEntityContainerMapping.cs
- SHA384Managed.cs
- HtmlTable.cs
- HealthMonitoringSection.cs
- QueryContinueDragEvent.cs
- ReadOnlyCollectionBase.cs
- PerspectiveCamera.cs
- ClassDataContract.cs
- OletxDependentTransaction.cs
- PropertyIdentifier.cs
- ReferenceConverter.cs
- RenderContext.cs
- Object.cs
- BitSet.cs
- TextContainerHelper.cs
- SafeRegistryKey.cs
- SQLConvert.cs
- WindowsListViewGroupSubsetLink.cs
- SimpleHandlerBuildProvider.cs
- BinaryReader.cs
- BaseParagraph.cs
- ObjectStorage.cs
- XmlSchemaValidator.cs
- ColumnWidthChangedEvent.cs
- TextBox.cs
- LayoutDump.cs
- FusionWrap.cs
- ExtensionSurface.cs
- SimpleTextLine.cs
- TypedRowHandler.cs
- ObjectPropertyMapping.cs
- ContainerFilterService.cs