Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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. // //[....] //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- QueryOptionExpression.cs
- WebUtility.cs
- AdornerDecorator.cs
- EDesignUtil.cs
- StandardMenuStripVerb.cs
- RegisteredDisposeScript.cs
- InputDevice.cs
- DetailsViewRowCollection.cs
- CodePageUtils.cs
- ThemeInfoAttribute.cs
- SizeLimitedCache.cs
- Page.cs
- EntityDataSourceState.cs
- Stream.cs
- ScrollChrome.cs
- XamlPoint3DCollectionSerializer.cs
- Container.cs
- CodeParameterDeclarationExpression.cs
- TableLayoutPanel.cs
- FormViewDeletedEventArgs.cs
- PingReply.cs
- TableAutomationPeer.cs
- QEncodedStream.cs
- FixedSchema.cs
- EntryIndex.cs
- WebPartHelpVerb.cs
- QuaternionRotation3D.cs
- QueryOpcode.cs
- Effect.cs
- ListViewGroupConverter.cs
- XXXInfos.cs
- MultiplexingFormatMapping.cs
- HGlobalSafeHandle.cs
- Shape.cs
- SectionUpdates.cs
- glyphs.cs
- TemplateKey.cs
- VectorAnimationUsingKeyFrames.cs
- BridgeDataReader.cs
- NameTable.cs
- CompositeActivityMarkupSerializer.cs
- TreeNodeConverter.cs
- ConcurrentBag.cs
- AtomMaterializerLog.cs
- AccessText.cs
- UIElement3D.cs
- HighlightComponent.cs
- ConfigurationStrings.cs
- DataSourceExpression.cs
- LateBoundBitmapDecoder.cs
- AccessKeyManager.cs
- PersonalizationStateInfo.cs
- StreamWriter.cs
- SettingsPropertyIsReadOnlyException.cs
- MsmqReceiveParameters.cs
- DataSourceHelper.cs
- XmlSyndicationContent.cs
- PerformanceCounter.cs
- OpenTypeLayoutCache.cs
- printdlgexmarshaler.cs
- WindowsRegion.cs
- EntityContainer.cs
- NullEntityWrapper.cs
- _LocalDataStore.cs
- SqlConnectionHelper.cs
- Parsers.cs
- DynamicUpdateCommand.cs
- SqlDataSourceCache.cs
- LinqDataSourceStatusEventArgs.cs
- QueryAccessibilityHelpEvent.cs
- MethodBuilder.cs
- OdbcParameterCollection.cs
- ServicesUtilities.cs
- ImageSourceValueSerializer.cs
- _LocalDataStoreMgr.cs
- WebPartConnectionsCancelVerb.cs
- DocumentPageViewAutomationPeer.cs
- BindingElementCollection.cs
- HGlobalSafeHandle.cs
- TypeLibConverter.cs
- ExpressionBindingCollection.cs
- ColumnTypeConverter.cs
- CodeDelegateCreateExpression.cs
- BufferedWebEventProvider.cs
- TableStyle.cs
- HMAC.cs
- EntityDataSourceView.cs
- String.cs
- RootBrowserWindowProxy.cs
- PrintDialog.cs
- ControlTemplate.cs
- TriggerBase.cs
- InfoCardService.cs
- TypeUtil.cs
- OverloadGroupAttribute.cs
- BooleanToVisibilityConverter.cs
- DbTransaction.cs
- WebEventTraceProvider.cs
- SmtpReplyReaderFactory.cs
- ObjectDataProvider.cs