Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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
- MultiAsyncResult.cs
- xdrvalidator.cs
- DataRelationPropertyDescriptor.cs
- MenuCommands.cs
- SizeF.cs
- EventPropertyMap.cs
- DataGridViewRowsRemovedEventArgs.cs
- ResourcePermissionBaseEntry.cs
- TreeNodeCollection.cs
- Pkcs7Signer.cs
- WizardPanelChangingEventArgs.cs
- CroppedBitmap.cs
- ConfigurationStrings.cs
- SerializationObjectManager.cs
- WebPartsPersonalization.cs
- WorkflowApplicationAbortedEventArgs.cs
- XmlSchemaComplexType.cs
- Span.cs
- OracleCommandSet.cs
- TagMapInfo.cs
- __TransparentProxy.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- WebPartHeaderCloseVerb.cs
- LazyTextWriterCreator.cs
- XslVisitor.cs
- WindowsClaimSet.cs
- SoapMessage.cs
- ButtonChrome.cs
- TemplatingOptionsDialog.cs
- BinaryObjectReader.cs
- SingleKeyFrameCollection.cs
- TcpAppDomainProtocolHandler.cs
- ExpressionVisitor.cs
- DbDataSourceEnumerator.cs
- SettingsProviderCollection.cs
- MethodSet.cs
- PointConverter.cs
- EpmSyndicationContentSerializer.cs
- XNodeSchemaApplier.cs
- BezierSegment.cs
- ServiceChannelFactory.cs
- XmlILAnnotation.cs
- OutputCacheProfile.cs
- Queue.cs
- SqlFileStream.cs
- ArgIterator.cs
- WorkflowWebService.cs
- ExtendedPropertiesHandler.cs
- MemoryStream.cs
- PixelFormatConverter.cs
- SharedMemory.cs
- ClientScriptManager.cs
- DetailsView.cs
- SmiRecordBuffer.cs
- ReferentialConstraintRoleElement.cs
- ColumnCollection.cs
- SoapSchemaExporter.cs
- UIElementPropertyUndoUnit.cs
- QueryOutputWriter.cs
- RenderingEventArgs.cs
- XmlTextReaderImpl.cs
- SHA256.cs
- NameValueSectionHandler.cs
- recordstatescratchpad.cs
- ConfigurationPropertyAttribute.cs
- PaperSize.cs
- QueryProcessor.cs
- ListSourceHelper.cs
- TraversalRequest.cs
- ComMethodElement.cs
- BaseCodeDomTreeGenerator.cs
- EntityCommandCompilationException.cs
- FlowDocumentView.cs
- Vector3dCollection.cs
- DataGridViewCellPaintingEventArgs.cs
- SecurityCredentialsManager.cs
- XmlSchemaAnyAttribute.cs
- NameTable.cs
- LayeredChannelListener.cs
- DataGridViewRow.cs
- CacheModeValueSerializer.cs
- CustomWebEventKey.cs
- SapiRecognizer.cs
- WhitespaceReader.cs
- ActivityBindForm.Designer.cs
- WebPartConnectionsCancelEventArgs.cs
- AppDomainShutdownMonitor.cs
- InvokePatternIdentifiers.cs
- CachedTypeface.cs
- TabRenderer.cs
- ResourceReader.cs
- Geometry.cs
- IODescriptionAttribute.cs
- PersonalizationProviderHelper.cs
- CodeVariableDeclarationStatement.cs
- ProcessModelInfo.cs
- ToolboxComponentsCreatedEventArgs.cs
- HttpRequestCacheValidator.cs
- CalculatedColumn.cs
- NetPeerTcpBindingElement.cs