Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ApplicationInfo.cs
- ElementHostPropertyMap.cs
- CallbackTimeoutsElement.cs
- CellIdBoolean.cs
- ExtractCollection.cs
- FaultBookmark.cs
- LinqDataSourceDeleteEventArgs.cs
- JsonSerializer.cs
- XamlBrushSerializer.cs
- StylusSystemGestureEventArgs.cs
- Boolean.cs
- StreamWithDictionary.cs
- CoTaskMemHandle.cs
- AbsoluteQuery.cs
- Color.cs
- SqlClientPermission.cs
- Translator.cs
- FrameworkRichTextComposition.cs
- _ListenerRequestStream.cs
- AttributeAction.cs
- securitycriticaldata.cs
- Point3DIndependentAnimationStorage.cs
- PartitionResolver.cs
- DataSourceHelper.cs
- PlaceHolder.cs
- CommandHelpers.cs
- IArgumentProvider.cs
- CqlIdentifiers.cs
- Translator.cs
- ScrollPattern.cs
- SerializationStore.cs
- NodeFunctions.cs
- CfgRule.cs
- AutomationElementIdentifiers.cs
- BaseCodePageEncoding.cs
- TreeViewHitTestInfo.cs
- FileSecurity.cs
- ToolBarTray.cs
- DocumentPageHost.cs
- Publisher.cs
- UnsafeNativeMethods.cs
- CacheDependency.cs
- XmlDataSourceNodeDescriptor.cs
- CodePropertyReferenceExpression.cs
- ListViewItemSelectionChangedEvent.cs
- CloseCollectionAsyncResult.cs
- GridViewHeaderRowPresenter.cs
- TransformDescriptor.cs
- WorkflowElementDialog.cs
- AssemblyAttributes.cs
- ToolStripRendererSwitcher.cs
- XmlnsPrefixAttribute.cs
- AttributeXamlType.cs
- FixedBufferAttribute.cs
- SerializerProvider.cs
- CompatibleComparer.cs
- InstalledFontCollection.cs
- DtrList.cs
- Literal.cs
- WorkflowRuntimeSection.cs
- ManagementNamedValueCollection.cs
- TokenBasedSetEnumerator.cs
- UnsupportedPolicyOptionsException.cs
- UnsafeNativeMethods.cs
- ProviderBase.cs
- RootProfilePropertySettingsCollection.cs
- ServiceBehaviorElementCollection.cs
- DateTime.cs
- Attachment.cs
- ObjectSecurity.cs
- Mouse.cs
- ContentHostHelper.cs
- CompositeFontInfo.cs
- ColorConvertedBitmap.cs
- SmiEventStream.cs
- Win32.cs
- DashStyle.cs
- SocketException.cs
- SafePEFileHandle.cs
- XPathAncestorQuery.cs
- CapabilitiesRule.cs
- BamlLocalizableResource.cs
- DateTimeFormatInfoScanner.cs
- TextureBrush.cs
- DetailsViewDeleteEventArgs.cs
- Win32SafeHandles.cs
- Win32.cs
- AssemblyNameProxy.cs
- TimeSpanStorage.cs
- CompilationUnit.cs
- ObjectIDGenerator.cs
- ArithmeticException.cs
- EDesignUtil.cs
- RolePrincipal.cs
- MetadataPropertyCollection.cs
- BasicExpressionVisitor.cs
- XmlSchemas.cs
- ImportContext.cs
- DynamicVirtualDiscoSearcher.cs
- CacheMemory.cs