Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- ObjectItemConventionAssemblyLoader.cs
- WebConfigurationHostFileChange.cs
- GridViewEditEventArgs.cs
- typedescriptorpermission.cs
- ObjRef.cs
- CatalogPartCollection.cs
- AffineTransform3D.cs
- TabPanel.cs
- DoubleConverter.cs
- UnsafeNativeMethods.cs
- RepeaterItemEventArgs.cs
- TreeViewAutomationPeer.cs
- XmlJsonReader.cs
- QueryableDataSourceEditData.cs
- TableItemPattern.cs
- Pen.cs
- CheckBoxRenderer.cs
- ListParagraph.cs
- WpfKnownType.cs
- TemplateAction.cs
- GeometryModel3D.cs
- RegionData.cs
- ApplyImportsAction.cs
- ComponentDispatcher.cs
- StorageComplexPropertyMapping.cs
- RegularExpressionValidator.cs
- KerberosReceiverSecurityToken.cs
- StrongNameKeyPair.cs
- CodePrimitiveExpression.cs
- UnmanagedMarshal.cs
- NullableBoolConverter.cs
- EmptyControlCollection.cs
- MessagePropertyVariants.cs
- QilXmlWriter.cs
- httpstaticobjectscollection.cs
- PageAsyncTaskManager.cs
- SerializationInfoEnumerator.cs
- AppearanceEditorPart.cs
- WebControlsSection.cs
- TargetControlTypeCache.cs
- WebConfigurationHostFileChange.cs
- EdmComplexTypeAttribute.cs
- ClonableStack.cs
- TextDpi.cs
- XmlSchemaAnnotation.cs
- ListBoxItem.cs
- UIElementAutomationPeer.cs
- Serializer.cs
- CheckBoxRenderer.cs
- LocalizableAttribute.cs
- RevocationPoint.cs
- TableSectionStyle.cs
- DataGridViewImageColumn.cs
- _FtpDataStream.cs
- HtmlEmptyTagControlBuilder.cs
- ISessionStateStore.cs
- BinaryFormatter.cs
- GACMembershipCondition.cs
- ConsoleKeyInfo.cs
- WhileDesigner.cs
- ViewEvent.cs
- SynchronizedInputAdaptor.cs
- processwaithandle.cs
- QilUnary.cs
- _ListenerAsyncResult.cs
- ButtonPopupAdapter.cs
- ControlUtil.cs
- ObjectSecurityT.cs
- MetabaseServerConfig.cs
- CompensatableTransactionScopeActivity.cs
- GetIsBrowserClientRequest.cs
- SelectionPattern.cs
- PrimaryKeyTypeConverter.cs
- EditorZoneBase.cs
- RecordConverter.cs
- DateTimeOffsetStorage.cs
- XsltArgumentList.cs
- PackWebResponse.cs
- DbDataSourceEnumerator.cs
- InternalsVisibleToAttribute.cs
- IntSecurity.cs
- CategoryGridEntry.cs
- DataGridViewCellStyleConverter.cs
- AppearanceEditorPart.cs
- SqlXmlStorage.cs
- BitmapScalingModeValidation.cs
- SafeRightsManagementQueryHandle.cs
- InternalConfigHost.cs
- Rect.cs
- PointLightBase.cs
- externdll.cs
- DataGridPagerStyle.cs
- ExplicitDiscriminatorMap.cs
- WebBrowserUriTypeConverter.cs
- FileDialog.cs
- PackWebRequestFactory.cs
- WpfSharedXamlSchemaContext.cs
- WebPartCloseVerb.cs
- TextPointer.cs
- ProcessModule.cs