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
- DerivedKeySecurityToken.cs
- FixUp.cs
- XmlAttributeCache.cs
- SendMailErrorEventArgs.cs
- TeredoHelper.cs
- Base64Stream.cs
- CommandSet.cs
- FieldCollectionEditor.cs
- MaterializeFromAtom.cs
- SoapMessage.cs
- DocumentationServerProtocol.cs
- RealizationDrawingContextWalker.cs
- TokenBasedSet.cs
- baseaxisquery.cs
- MimeWriter.cs
- DSASignatureFormatter.cs
- HtmlControlPersistable.cs
- BitmapPalette.cs
- ObjectConverter.cs
- SignedXmlDebugLog.cs
- DataGridTextBox.cs
- InternalMappingException.cs
- ErrorTableItemStyle.cs
- MaterialCollection.cs
- ServiceDurableInstanceContextProvider.cs
- EnterpriseServicesHelper.cs
- Int64Animation.cs
- XmlSchemaGroupRef.cs
- QilLoop.cs
- SecurityTokenParametersEnumerable.cs
- EncoderBestFitFallback.cs
- IssuanceLicense.cs
- LayoutExceptionEventArgs.cs
- DynamicResourceExtension.cs
- ReadOnlyDataSourceView.cs
- Model3DGroup.cs
- WriteableOnDemandStream.cs
- KeyConstraint.cs
- DBCommandBuilder.cs
- DateTimeSerializationSection.cs
- ApplicationFileCodeDomTreeGenerator.cs
- HttpBrowserCapabilitiesWrapper.cs
- PartBasedPackageProperties.cs
- TrustLevelCollection.cs
- FormsAuthenticationTicket.cs
- FrameworkElementAutomationPeer.cs
- ItemList.cs
- SqlBulkCopyColumnMapping.cs
- ReflectEventDescriptor.cs
- WizardStepBase.cs
- TimeSpanMinutesConverter.cs
- WindowsServiceElement.cs
- X509CertificateRecipientServiceCredential.cs
- AggregationMinMaxHelpers.cs
- FormViewPageEventArgs.cs
- AppDomainAttributes.cs
- ObjectView.cs
- SignedXml.cs
- configsystem.cs
- XhtmlConformanceSection.cs
- UnsafeNativeMethods.cs
- CodeThrowExceptionStatement.cs
- StretchValidation.cs
- UIElementParagraph.cs
- ClientProtocol.cs
- JsonFormatWriterGenerator.cs
- DictionaryGlobals.cs
- StreamingContext.cs
- InternalControlCollection.cs
- ListSurrogate.cs
- LambdaCompiler.Statements.cs
- SessionStateModule.cs
- StrongTypingException.cs
- ObjectViewEntityCollectionData.cs
- RubberbandSelector.cs
- XmlIgnoreAttribute.cs
- ipaddressinformationcollection.cs
- ResizeGrip.cs
- BindingGroup.cs
- BitmapEffectDrawing.cs
- DefinitionBase.cs
- SrgsDocumentParser.cs
- LoadWorkflowByInstanceKeyCommand.cs
- CodeGotoStatement.cs
- RunWorkerCompletedEventArgs.cs
- FrameworkRichTextComposition.cs
- FileAuthorizationModule.cs
- SoapIncludeAttribute.cs
- Section.cs
- GeneratedCodeAttribute.cs
- LabelInfo.cs
- TableItemPatternIdentifiers.cs
- XamlSerializerUtil.cs
- ValueQuery.cs
- WebPartConnectionsConnectVerb.cs
- DesignerTransaction.cs
- JavaScriptString.cs
- SpellerHighlightLayer.cs
- ServerIdentity.cs
- LockCookie.cs