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
- __ComObject.cs
- DependencyObjectCodeDomSerializer.cs
- ServiceInfo.cs
- RegexStringValidator.cs
- Rotation3DKeyFrameCollection.cs
- Normalizer.cs
- Repeater.cs
- VisualTreeUtils.cs
- SafeRightsManagementHandle.cs
- NestPullup.cs
- ListViewItem.cs
- EntitySqlQueryBuilder.cs
- MaskedTextBox.cs
- UnmanagedMarshal.cs
- SqlClientWrapperSmiStream.cs
- WindowsTokenRoleProvider.cs
- _LocalDataStoreMgr.cs
- StringBlob.cs
- SqlCommand.cs
- FormsAuthenticationConfiguration.cs
- TableHeaderCell.cs
- PropertyPushdownHelper.cs
- EntityKey.cs
- CodeDomConfigurationHandler.cs
- EncodingNLS.cs
- ValueOfAction.cs
- BaseConfigurationRecord.cs
- CodeTypeDelegate.cs
- MarkedHighlightComponent.cs
- PathGeometry.cs
- ComNativeDescriptor.cs
- SystemResourceHost.cs
- CompressionTransform.cs
- AddingNewEventArgs.cs
- HebrewCalendar.cs
- AssemblyBuilderData.cs
- AnnotationAuthorChangedEventArgs.cs
- MsmqTransportReceiveParameters.cs
- DecoderBestFitFallback.cs
- StylusEditingBehavior.cs
- Convert.cs
- VirtualPathProvider.cs
- ConfigurationHandlersInstallComponent.cs
- HttpResponseHeader.cs
- NamedElement.cs
- Geometry.cs
- WebPartAddingEventArgs.cs
- DetailsViewInsertedEventArgs.cs
- CrossSiteScriptingValidation.cs
- SocketStream.cs
- LinqDataSourceContextData.cs
- SystemMulticastIPAddressInformation.cs
- SystemIPv4InterfaceProperties.cs
- XappLauncher.cs
- RestClientProxyHandler.cs
- Stylesheet.cs
- DBSqlParserColumnCollection.cs
- Assembly.cs
- UpDownBase.cs
- Receive.cs
- CodeTypeDeclarationCollection.cs
- ActivityExecutor.cs
- DesignerTextViewAdapter.cs
- Int64AnimationBase.cs
- Empty.cs
- PageHandlerFactory.cs
- Control.cs
- QuadraticBezierSegment.cs
- DataRecordObjectView.cs
- HwndAppCommandInputProvider.cs
- Margins.cs
- WindowHideOrCloseTracker.cs
- DataKey.cs
- DictionaryGlobals.cs
- EventLogTraceListener.cs
- ToolStripControlHost.cs
- Point3DCollectionValueSerializer.cs
- BitmapPalettes.cs
- StreamingContext.cs
- TreeBuilder.cs
- ProcessModelInfo.cs
- ExpressionVisitor.cs
- XPathNodePointer.cs
- UnsafeNativeMethods.cs
- OleDbConnectionFactory.cs
- HttpFileCollection.cs
- ApplicationId.cs
- CodeGen.cs
- FileBasedResourceGroveler.cs
- CommentAction.cs
- ScalarOps.cs
- Model3DGroup.cs
- SqlCaseSimplifier.cs
- ChangeDirector.cs
- EntityViewContainer.cs
- BackStopAuthenticationModule.cs
- AssemblyCollection.cs
- COAUTHIDENTITY.cs
- WasEndpointConfigContainer.cs
- wpf-etw.cs