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
- DataPagerFieldItem.cs
- WebPartsSection.cs
- JsonObjectDataContract.cs
- LabelEditEvent.cs
- SourceElementsCollection.cs
- MemoryRecordBuffer.cs
- TableLayout.cs
- CompilationSection.cs
- CacheOutputQuery.cs
- LineGeometry.cs
- FastPropertyAccessor.cs
- AsyncMethodInvoker.cs
- LogLogRecordHeader.cs
- SiteMapPathDesigner.cs
- Crypto.cs
- ContentDisposition.cs
- XsdCachingReader.cs
- XmlParser.cs
- ShapingEngine.cs
- FormViewInsertedEventArgs.cs
- UrlMappingsSection.cs
- DataKeyArray.cs
- EncryptedKeyIdentifierClause.cs
- ConstNode.cs
- ChangeProcessor.cs
- MultipartContentParser.cs
- Propagator.ExtentPlaceholderCreator.cs
- GridViewDeleteEventArgs.cs
- SqlConnectionHelper.cs
- SqlDataSource.cs
- SqlCacheDependencyDatabaseCollection.cs
- OperationContextScope.cs
- EditorPart.cs
- DataGridViewComboBoxEditingControl.cs
- FontCollection.cs
- ProcessProtocolHandler.cs
- TableLayout.cs
- LicenseException.cs
- TextElementAutomationPeer.cs
- PropertyItemInternal.cs
- ObjectDataSourceView.cs
- TraversalRequest.cs
- DemultiplexingClientMessageFormatter.cs
- CommandSet.cs
- BaseTemplateBuildProvider.cs
- GPStream.cs
- SoapAttributes.cs
- WindowsAltTab.cs
- DataGridAddNewRow.cs
- PartialCachingAttribute.cs
- SqlDelegatedTransaction.cs
- StreamAsIStream.cs
- ViewGenResults.cs
- XmlDataSourceView.cs
- ResolvedKeyFrameEntry.cs
- XmlSchemaSimpleTypeList.cs
- CodeDirectoryCompiler.cs
- SqlGenericUtil.cs
- ExpressionEditorAttribute.cs
- XhtmlBasicLinkAdapter.cs
- ConfigurationManagerInternal.cs
- ClientTargetCollection.cs
- TreeIterator.cs
- HtmlSelect.cs
- InlineCollection.cs
- XmlReflectionImporter.cs
- MessageSecurityVersion.cs
- ThemeDirectoryCompiler.cs
- PackWebResponse.cs
- KernelTypeValidation.cs
- Emitter.cs
- StylusCaptureWithinProperty.cs
- ActivityExecutionWorkItem.cs
- TypedReference.cs
- TitleStyle.cs
- AutomationPatternInfo.cs
- CollectionAdapters.cs
- UInt16Converter.cs
- COM2IPerPropertyBrowsingHandler.cs
- UTF8Encoding.cs
- StylusPointProperty.cs
- ApplyTemplatesAction.cs
- XpsTokenContext.cs
- ObjectDataSourceStatusEventArgs.cs
- MarkerProperties.cs
- RunInstallerAttribute.cs
- WindowsStatusBar.cs
- LinkConverter.cs
- IntegerValidator.cs
- XPathChildIterator.cs
- VariableExpressionConverter.cs
- Geometry.cs
- PersonalizableTypeEntry.cs
- XmlSchemaCollection.cs
- ButtonColumn.cs
- Random.cs
- SchemaManager.cs
- CompositeActivityTypeDescriptor.cs
- PreviewKeyDownEventArgs.cs
- NamespaceCollection.cs