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
- X509ThumbprintKeyIdentifierClause.cs
- SelectingProviderEventArgs.cs
- NullRuntimeConfig.cs
- RemoveFromCollection.cs
- EventItfInfo.cs
- SqlRetyper.cs
- LogEntryHeaderSerializer.cs
- TemplateBuilder.cs
- ForwardPositionQuery.cs
- EntityContainerEmitter.cs
- ValueExpressions.cs
- IntSumAggregationOperator.cs
- NativeObjectSecurity.cs
- DataRecordObjectView.cs
- TextBounds.cs
- NamespaceList.cs
- SRGSCompiler.cs
- PropertyChangingEventArgs.cs
- StreamSecurityUpgradeInitiator.cs
- XPathAncestorIterator.cs
- ContractValidationHelper.cs
- GetIndexBinder.cs
- Avt.cs
- EditingScope.cs
- TextTreeDeleteContentUndoUnit.cs
- MouseButton.cs
- HttpException.cs
- EastAsianLunisolarCalendar.cs
- InvokeProviderWrapper.cs
- SessionPageStatePersister.cs
- PropertyDescriptor.cs
- FormViewUpdatedEventArgs.cs
- NamedObject.cs
- PKCS1MaskGenerationMethod.cs
- SelectManyQueryOperator.cs
- RowToFieldTransformer.cs
- SoapIncludeAttribute.cs
- XdrBuilder.cs
- JoinGraph.cs
- HitTestResult.cs
- MethodRental.cs
- RotationValidation.cs
- TitleStyle.cs
- RequestCachePolicyConverter.cs
- WithParamAction.cs
- VectorCollectionValueSerializer.cs
- SpotLight.cs
- DataKeyPropertyAttribute.cs
- ProfilePropertyMetadata.cs
- XpsFixedPageReaderWriter.cs
- TextBoxAutomationPeer.cs
- CollectionView.cs
- ParallelEnumerable.cs
- Avt.cs
- XMLSchema.cs
- XmlnsCache.cs
- WebPartUserCapability.cs
- sqlser.cs
- KeyTime.cs
- QuaternionValueSerializer.cs
- KeyMatchBuilder.cs
- EnumerableRowCollectionExtensions.cs
- TypeSystem.cs
- HtmlInputPassword.cs
- ImageUrlEditor.cs
- GetLedgerEntryForRecipientRequest.cs
- HideDisabledControlAdapter.cs
- FastPropertyAccessor.cs
- XamlTreeBuilderBamlRecordWriter.cs
- DocumentSchemaValidator.cs
- WebPartConnectionsEventArgs.cs
- HiddenField.cs
- PropertyConverter.cs
- DataFieldConverter.cs
- Message.cs
- XNodeSchemaApplier.cs
- FormsAuthenticationUser.cs
- SQLMoney.cs
- XmlDocumentSurrogate.cs
- WriteTimeStream.cs
- UrlAuthorizationModule.cs
- RoleManagerModule.cs
- QfeChecker.cs
- RC2.cs
- Timeline.cs
- XmlSchemaAnyAttribute.cs
- CompositionCommandSet.cs
- ListView.cs
- MenuCommands.cs
- GridViewPageEventArgs.cs
- WebPartActionVerb.cs
- PlainXmlWriter.cs
- Geometry.cs
- SystemInformation.cs
- CharConverter.cs
- DetailsView.cs
- PersonalizationProviderCollection.cs
- DataServiceContext.cs
- SafeUserTokenHandle.cs
- XmlSchemaSimpleTypeRestriction.cs