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
- DiffuseMaterial.cs
- ColumnCollection.cs
- NativeWindow.cs
- ValidationErrorInfo.cs
- Error.cs
- TypeDescriptor.cs
- SQLBoolean.cs
- BufferModesCollection.cs
- BitSet.cs
- StreamAsIStream.cs
- WebPartVerbCollection.cs
- CqlIdentifiers.cs
- FilterException.cs
- NameObjectCollectionBase.cs
- DetailsViewActionList.cs
- RenderData.cs
- XmlQueryTypeFactory.cs
- VoiceChangeEventArgs.cs
- ButtonFlatAdapter.cs
- ResourceSet.cs
- ImageUrlEditor.cs
- FontSource.cs
- RoutingChannelExtension.cs
- Int64Storage.cs
- ConfigurationManagerHelperFactory.cs
- SqlDataSourceRefreshSchemaForm.cs
- TextAutomationPeer.cs
- InitializationEventAttribute.cs
- WebConfigurationManager.cs
- DbProviderFactoriesConfigurationHandler.cs
- NativeRightsManagementAPIsStructures.cs
- WebPartEventArgs.cs
- ToolstripProfessionalRenderer.cs
- DesignerSerializerAttribute.cs
- ColorAnimation.cs
- EnumValAlphaComparer.cs
- Image.cs
- Viewport3DAutomationPeer.cs
- DynamicRenderer.cs
- Visual3DCollection.cs
- AtlasWeb.Designer.cs
- XmlDataSourceNodeDescriptor.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- SerializerDescriptor.cs
- NamedPipeConnectionPoolSettingsElement.cs
- unsafenativemethodstextservices.cs
- ListBox.cs
- DiscoveryClient.cs
- DataControlFieldHeaderCell.cs
- InternalConfigEventArgs.cs
- RepeatButtonAutomationPeer.cs
- SqlGatherProducedAliases.cs
- RectangleHotSpot.cs
- InvalidOperationException.cs
- ReflectionServiceProvider.cs
- InputProcessorProfilesLoader.cs
- SoapCodeExporter.cs
- ScriptReferenceBase.cs
- DesignerActionPropertyItem.cs
- RichTextBox.cs
- InputReport.cs
- GridViewSelectEventArgs.cs
- KeyFrames.cs
- GenericPrincipal.cs
- TransactionChannelListener.cs
- JsonStringDataContract.cs
- TextEditorCopyPaste.cs
- DesignerLoader.cs
- HttpListenerException.cs
- ObjectIDGenerator.cs
- ExternalDataExchangeService.cs
- ApplicationSecurityInfo.cs
- StaticSiteMapProvider.cs
- UserValidatedEventArgs.cs
- SingleTagSectionHandler.cs
- EntityDataSourceView.cs
- PackWebRequestFactory.cs
- PolicyReader.cs
- AmbiguousMatchException.cs
- KnowledgeBase.cs
- ProcessHostServerConfig.cs
- EmptyControlCollection.cs
- ItemsPresenter.cs
- View.cs
- UpdatableGenericsFeature.cs
- ParameterToken.cs
- Image.cs
- FixedPageProcessor.cs
- AttributeCollection.cs
- RichTextBoxConstants.cs
- PatternMatcher.cs
- DataGridViewSelectedCellCollection.cs
- GPRECT.cs
- WebPartZoneCollection.cs
- ServiceHostFactory.cs
- BuildProvider.cs
- IPAddress.cs
- ToolStripStatusLabel.cs
- MatrixStack.cs
- MexBindingBindingCollectionElement.cs