Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //[....] //----------------------------------------------------------------------------- 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
- FailedToStartupUIException.cs
- LeftCellWrapper.cs
- WebPartCatalogAddVerb.cs
- HScrollBar.cs
- DecimalAnimation.cs
- AvtEvent.cs
- CounterCreationData.cs
- XmlAttributes.cs
- SqlCommandBuilder.cs
- WorkflowViewStateService.cs
- DataSourceXmlClassAttribute.cs
- DataGridViewCellFormattingEventArgs.cs
- AttributeCollection.cs
- QueryGeneratorBase.cs
- StructuredCompositeActivityDesigner.cs
- RangeContentEnumerator.cs
- NavigationProgressEventArgs.cs
- PropertyBuilder.cs
- SubqueryRules.cs
- BitConverter.cs
- XmlConvert.cs
- X509SecurityTokenProvider.cs
- ModuleElement.cs
- SizeF.cs
- Geometry3D.cs
- NegotiationTokenProvider.cs
- XmlChildEnumerator.cs
- ZipFileInfoCollection.cs
- BamlBinaryReader.cs
- SqlCacheDependencyDatabaseCollection.cs
- PersianCalendar.cs
- PeerCollaborationPermission.cs
- ShapeTypeface.cs
- BamlResourceDeserializer.cs
- XmlRawWriter.cs
- RefreshPropertiesAttribute.cs
- TextEditorTables.cs
- BaseResourcesBuildProvider.cs
- D3DImage.cs
- WebPartPersonalization.cs
- NullableConverter.cs
- PlatformNotSupportedException.cs
- VisualBrush.cs
- SpecularMaterial.cs
- ClaimTypeElementCollection.cs
- DataGridViewAutoSizeModeEventArgs.cs
- DefaultProfileManager.cs
- XmlUtf8RawTextWriter.cs
- AssemblyName.cs
- Int32EqualityComparer.cs
- XmlParserContext.cs
- OleDbTransaction.cs
- PageBuildProvider.cs
- DesignerVerb.cs
- DataListDesigner.cs
- Rights.cs
- TextBlockAutomationPeer.cs
- CodeNamespaceImport.cs
- ResourcePart.cs
- Solver.cs
- DoubleAnimationClockResource.cs
- WebColorConverter.cs
- Base64Encoder.cs
- TypeSystem.cs
- XslCompiledTransform.cs
- BooleanStorage.cs
- SingleKeyFrameCollection.cs
- DataGridPagerStyle.cs
- AssociationTypeEmitter.cs
- ConfigXmlElement.cs
- Size3D.cs
- PasswordTextContainer.cs
- DataException.cs
- ToolBarTray.cs
- PenThreadPool.cs
- TextDpi.cs
- FragmentQuery.cs
- OleDbWrapper.cs
- SystemResources.cs
- DirectoryInfo.cs
- ImpersonationContext.cs
- OleDbConnection.cs
- SqlNodeTypeOperators.cs
- UnicastIPAddressInformationCollection.cs
- XmlSchemaSubstitutionGroup.cs
- SortDescription.cs
- PointAnimationBase.cs
- TitleStyle.cs
- DefaultBindingPropertyAttribute.cs
- ToolStripItemCollection.cs
- DropDownList.cs
- ApplicationSecurityManager.cs
- DependencyProperty.cs
- MouseActionConverter.cs
- DefaultTextStoreTextComposition.cs
- DataAccessor.cs
- WindowsIPAddress.cs
- TransformerInfoCollection.cs
- GeometryCombineModeValidation.cs
- SeekableReadStream.cs