Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / NodeFunctions.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextEffectCollection.cs
- SapiRecognizer.cs
- _Connection.cs
- BindingListCollectionView.cs
- Model3D.cs
- Baml2006ReaderContext.cs
- DbQueryCommandTree.cs
- SafeNativeMethods.cs
- SoapObjectReader.cs
- RelationshipDetailsRow.cs
- X509ThumbprintKeyIdentifierClause.cs
- NavigationWindow.cs
- CommittableTransaction.cs
- SettingsPropertyCollection.cs
- DynamicScriptObject.cs
- Parameter.cs
- ThreadInterruptedException.cs
- MobileControlBuilder.cs
- TransferMode.cs
- TreeViewImageKeyConverter.cs
- PageCanvasSize.cs
- OdbcCommand.cs
- HWStack.cs
- VisualBrush.cs
- CombinedGeometry.cs
- StickyNoteHelper.cs
- Transform3DGroup.cs
- StylusEditingBehavior.cs
- Command.cs
- peernodeimplementation.cs
- ColorConverter.cs
- TableColumn.cs
- IntranetCredentialPolicy.cs
- TextDecorationCollectionConverter.cs
- Int32CollectionConverter.cs
- Console.cs
- DashStyle.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- MemberAccessException.cs
- RequestStatusBarUpdateEventArgs.cs
- XmlNullResolver.cs
- X509Logo.cs
- TextParagraphView.cs
- FixedSchema.cs
- FrameworkName.cs
- StoryFragments.cs
- WebEventTraceProvider.cs
- TagPrefixAttribute.cs
- DynamicResourceExtensionConverter.cs
- SystemMulticastIPAddressInformation.cs
- ThreadExceptionEvent.cs
- IItemProperties.cs
- DbSetClause.cs
- InvokerUtil.cs
- ExitEventArgs.cs
- Util.cs
- EventPropertyMap.cs
- ValuePattern.cs
- SizeKeyFrameCollection.cs
- XmlHierarchyData.cs
- ScrollItemProviderWrapper.cs
- Set.cs
- TrackBar.cs
- ClientSettings.cs
- Mappings.cs
- TextElementAutomationPeer.cs
- OledbConnectionStringbuilder.cs
- CompletionCallbackWrapper.cs
- EmptyElement.cs
- ReferencedType.cs
- RelationshipConstraintValidator.cs
- ModelItemImpl.cs
- BitmapCache.cs
- TypeElementCollection.cs
- loginstatus.cs
- TextChangedEventArgs.cs
- DeviceSpecificDesigner.cs
- ConcurrentQueue.cs
- DataGridViewColumnTypePicker.cs
- XmlReaderDelegator.cs
- SharedStatics.cs
- ComboBoxItem.cs
- HebrewNumber.cs
- TemplateBindingExtension.cs
- BinaryFormatterWriter.cs
- Zone.cs
- OpenFileDialog.cs
- SqlRowUpdatedEvent.cs
- RegexCompilationInfo.cs
- DataTableNewRowEvent.cs
- ConsumerConnectionPointCollection.cs
- FtpWebRequest.cs
- XmlSchemaExternal.cs
- CrossContextChannel.cs
- Error.cs
- WebExceptionStatus.cs
- ForeignConstraint.cs
- DataBindingExpressionBuilder.cs
- TimeoutException.cs
- CodeMethodReturnStatement.cs