Code:
/ FX-1434 / FX-1434 / 1.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
- ItemCheckedEvent.cs
- MemberDomainMap.cs
- WebPartConnectVerb.cs
- NestedContainer.cs
- TypeForwardedToAttribute.cs
- SuppressIldasmAttribute.cs
- DynamicActionMessageFilter.cs
- XmlEnumAttribute.cs
- ObjectDataSourceEventArgs.cs
- Adorner.cs
- ToolStripDesignerAvailabilityAttribute.cs
- WindowsComboBox.cs
- BitmapSource.cs
- SelectionEditingBehavior.cs
- RoleManagerSection.cs
- ICspAsymmetricAlgorithm.cs
- Rect.cs
- TextTreeText.cs
- ClientEventManager.cs
- FigureParaClient.cs
- HttpHandlersSection.cs
- Persist.cs
- SudsWriter.cs
- CreateBookmarkScope.cs
- UnknownBitmapEncoder.cs
- PrefixQName.cs
- Effect.cs
- ReadWriteSpinLock.cs
- ResourceExpressionBuilder.cs
- Serializer.cs
- EdmRelationshipRoleAttribute.cs
- TextOptionsInternal.cs
- RoleManagerModule.cs
- XslTransform.cs
- Stack.cs
- QualifiedCellIdBoolean.cs
- ProcessInfo.cs
- ReadOnlyDataSourceView.cs
- ConfigUtil.cs
- Authorization.cs
- SqlFacetAttribute.cs
- CodeArrayIndexerExpression.cs
- HostingEnvironment.cs
- BamlRecordHelper.cs
- TdsParserSafeHandles.cs
- DiscoveryDocumentLinksPattern.cs
- ElementNotAvailableException.cs
- EntityDataSourceSelectingEventArgs.cs
- ConfigurationStrings.cs
- TypeForwardedToAttribute.cs
- MiniModule.cs
- MenuItem.cs
- HttpRequestTraceRecord.cs
- ProcessHostConfigUtils.cs
- SmtpNtlmAuthenticationModule.cs
- UIElementParaClient.cs
- EmptyWithCancelationCheckWorkItem.cs
- OutOfProcStateClientManager.cs
- Vector.cs
- HttpListenerRequestUriBuilder.cs
- PasswordPropertyTextAttribute.cs
- DBDataPermission.cs
- CatalogPart.cs
- ConnectionPoint.cs
- MultitargetUtil.cs
- assemblycache.cs
- ConvertTextFrag.cs
- FormParameter.cs
- QilScopedVisitor.cs
- Viewport2DVisual3D.cs
- TypeListConverter.cs
- Int32Converter.cs
- SharedPersonalizationStateInfo.cs
- BoolExpr.cs
- sqlcontext.cs
- DesignConnection.cs
- DigestTraceRecordHelper.cs
- GC.cs
- PeerNameRecordCollection.cs
- EventItfInfo.cs
- TextHidden.cs
- SmtpFailedRecipientException.cs
- UrlPath.cs
- SchemaComplexType.cs
- DefaultProxySection.cs
- Msmq4SubqueuePoisonHandler.cs
- HMACSHA384.cs
- OutputWindow.cs
- Timer.cs
- DebugView.cs
- DiscoveryDocumentSerializer.cs
- FixedDSBuilder.cs
- PointHitTestResult.cs
- RecognizerInfo.cs
- InvariantComparer.cs
- ManifestResourceInfo.cs
- DesignerLoader.cs
- BitmapEffectState.cs
- AssemblyAttributesGoHere.cs
- ManagementInstaller.cs