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
- DocumentGridPage.cs
- UIElement.cs
- BitVector32.cs
- XmlILModule.cs
- HierarchicalDataTemplate.cs
- ObjectList.cs
- XmlText.cs
- HtmlMeta.cs
- ArithmeticException.cs
- SqlXml.cs
- IndexedGlyphRun.cs
- ClientSideQueueItem.cs
- LogLogRecordHeader.cs
- MatrixAnimationBase.cs
- SystemNetHelpers.cs
- contentDescriptor.cs
- ControlDesignerState.cs
- RegisteredExpandoAttribute.cs
- MobileCategoryAttribute.cs
- ElementHost.cs
- recordstatescratchpad.cs
- TableProviderWrapper.cs
- CommandField.cs
- MarshalByValueComponent.cs
- CompatibleComparer.cs
- ReturnEventArgs.cs
- NamedPipeTransportSecurityElement.cs
- HttpWebRequest.cs
- Membership.cs
- NativeCppClassAttribute.cs
- KnownTypesProvider.cs
- WebPartCancelEventArgs.cs
- ListViewDataItem.cs
- UInt64.cs
- EventDescriptor.cs
- StrokeNode.cs
- AppDomainShutdownMonitor.cs
- DateTimeConverter2.cs
- ThicknessAnimationBase.cs
- AssociationSetEnd.cs
- MonthChangedEventArgs.cs
- RuntimeVariablesExpression.cs
- GridViewActionList.cs
- UnsignedPublishLicense.cs
- ObjectDataSourceStatusEventArgs.cs
- ListParaClient.cs
- COM2Properties.cs
- GridViewSortEventArgs.cs
- PolicyLevel.cs
- QilInvoke.cs
- ClientSettingsStore.cs
- RepeatBehaviorConverter.cs
- DependencyObjectType.cs
- DBConcurrencyException.cs
- DrawingServices.cs
- ComponentEvent.cs
- ClientConfigurationSystem.cs
- InlineCollection.cs
- CompositeDispatchFormatter.cs
- HtmlAnchor.cs
- DomainConstraint.cs
- DataTablePropertyDescriptor.cs
- ImageClickEventArgs.cs
- HtmlEmptyTagControlBuilder.cs
- SystemWebSectionGroup.cs
- BodyGlyph.cs
- WrappingXamlSchemaContext.cs
- ReadOnlyTernaryTree.cs
- _HeaderInfo.cs
- OleDbCommandBuilder.cs
- Pair.cs
- ResourceCategoryAttribute.cs
- FirstMatchCodeGroup.cs
- SetStateEventArgs.cs
- HttpServerVarsCollection.cs
- _Semaphore.cs
- DataIdProcessor.cs
- ListCollectionView.cs
- StructuralObject.cs
- MD5Cng.cs
- TrackBarRenderer.cs
- remotingproxy.cs
- TextParagraphProperties.cs
- EnumMemberAttribute.cs
- Form.cs
- GeneralTransform3DCollection.cs
- XmlSchemaSimpleContent.cs
- AttributeUsageAttribute.cs
- NotifyParentPropertyAttribute.cs
- CachedFontFamily.cs
- GridViewCancelEditEventArgs.cs
- DataRowIndexBuffer.cs
- DynamicControlParameter.cs
- SecurityHelper.cs
- ToolStripActionList.cs
- _TransmitFileOverlappedAsyncResult.cs
- mil_commands.cs
- ConfigXmlElement.cs
- XmlSerializationReader.cs
- AttachedPropertiesService.cs