Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / NodeFunctions.cs / 1 / NodeFunctions.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 NodeFunctions : ValueQuery { Query arg = null; FT funcType; XsltContext xsltContext; public NodeFunctions(FT funcType, Query arg) { this.funcType = funcType; this.arg = arg; } public override void SetXsltContext(XsltContext context){ this.xsltContext = context.Whitespace ? context : null; if (arg != null) { arg.SetXsltContext(context); } } private XPathNavigator EvaluateArg(XPathNodeIterator context) { if (arg == null) { return context.Current; } arg.Evaluate(context); return arg.Advance(); } public override object Evaluate(XPathNodeIterator context) { XPathNavigator argVal; switch (funcType) { case FT.FuncPosition: return (double)context.CurrentPosition; case FT.FuncLast: return (double)context.Count; case FT.FuncNameSpaceUri: argVal = EvaluateArg(context); if (argVal != null) { return argVal.NamespaceURI; } break; case FT.FuncLocalName: argVal = EvaluateArg(context); if (argVal != null) { return argVal.LocalName; } break; case FT.FuncName : argVal = EvaluateArg(context); if (argVal != null) { return argVal.Name; } break; case FT.FuncCount: arg.Evaluate(context); int count = 0; if (xsltContext != null) { XPathNavigator nav; while ((nav = arg.Advance()) != null) { if (nav.NodeType != XPathNodeType.Whitespace || xsltContext.PreserveWhitespace(nav)) { count++; } } } else { while (arg.Advance() != null) { count++; } } return (double) count; } return string.Empty; } public override XPathResultType StaticType { get { return Function.ReturnTypes[(int)funcType]; } } public override XPathNodeIterator Clone() { NodeFunctions method = new NodeFunctions(funcType, Clone(arg)); method.xsltContext = this.xsltContext; return method; } 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
- MatrixAnimationUsingPath.cs
- UnmanagedMarshal.cs
- AsymmetricSignatureDeformatter.cs
- EdmToObjectNamespaceMap.cs
- XamlReaderHelper.cs
- BaseDataBoundControlDesigner.cs
- ToolZoneDesigner.cs
- StatusBarDesigner.cs
- FrameworkElementAutomationPeer.cs
- Funcletizer.cs
- DataRowCollection.cs
- EventPrivateKey.cs
- CountAggregationOperator.cs
- AssertSection.cs
- safemediahandle.cs
- SubMenuStyleCollection.cs
- ConfigurationProperty.cs
- ImplicitInputBrush.cs
- BoundColumn.cs
- Transform3DGroup.cs
- BitmapImage.cs
- LongAverageAggregationOperator.cs
- OdbcErrorCollection.cs
- Sql8ConformanceChecker.cs
- Root.cs
- CompilationLock.cs
- PointUtil.cs
- MenuItemBindingCollection.cs
- FontSourceCollection.cs
- Rule.cs
- TextEditorMouse.cs
- DataGridViewColumnCollection.cs
- TableDetailsRow.cs
- ErrorFormatterPage.cs
- StyleTypedPropertyAttribute.cs
- SoapAttributes.cs
- ImageButton.cs
- InheritablePropertyChangeInfo.cs
- BaseTemplateCodeDomTreeGenerator.cs
- Point4DValueSerializer.cs
- StrongNameKeyPair.cs
- RuleRefElement.cs
- NetSectionGroup.cs
- TranslateTransform3D.cs
- JoinSymbol.cs
- EntitySetDataBindingList.cs
- SharedPerformanceCounter.cs
- BitmapEffectInputData.cs
- RectangleConverter.cs
- PkcsUtils.cs
- ProviderSettings.cs
- TrustSection.cs
- RecommendedAsConfigurableAttribute.cs
- RelationshipSet.cs
- SvcMapFile.cs
- ChangeNode.cs
- WorkflowPageSetupDialog.cs
- ExpressionBuilderContext.cs
- AncestorChangedEventArgs.cs
- ScriptManager.cs
- BookmarkUndoUnit.cs
- IntersectQueryOperator.cs
- Point.cs
- ConfigurationElementProperty.cs
- ToolBarButton.cs
- HttpCapabilitiesSectionHandler.cs
- CoreChannel.cs
- MachineKeySection.cs
- RuntimeConfigLKG.cs
- PaperSource.cs
- Debug.cs
- Container.cs
- EndOfStreamException.cs
- ObjectPropertyMapping.cs
- COM2Properties.cs
- OLEDB_Util.cs
- SettingsContext.cs
- InputProcessorProfiles.cs
- BitFlagsGenerator.cs
- ExtendedProperty.cs
- ReturnType.cs
- ConvertEvent.cs
- Double.cs
- SmiTypedGetterSetter.cs
- MatrixValueSerializer.cs
- MissingSatelliteAssemblyException.cs
- PrivacyNoticeElement.cs
- LicenseManager.cs
- SingleSelectRootGridEntry.cs
- CheckBoxList.cs
- GradientSpreadMethodValidation.cs
- addressfiltermode.cs
- CultureSpecificStringDictionary.cs
- FieldToken.cs
- AssemblyBuilder.cs
- SingleTagSectionHandler.cs
- SchemaNamespaceManager.cs
- ConfigurationManager.cs
- ProfileParameter.cs
- SolidColorBrush.cs