Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / FunctionQuery.cs / 1305376 / FunctionQuery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.Xsl; using System.Xml.XPath; using System.Diagnostics; using System.Globalization; using System.Collections.Generic; internal sealed class FunctionQuery : ExtensionQuery { private IListargs; private IXsltContextFunction function; public FunctionQuery(string prefix, string name, List args) : base(prefix, name) { this.args = args; } private FunctionQuery(FunctionQuery other) : base(other) { this.function = other.function; Query[] tmp = new Query[other.args.Count]; { for (int i = 0; i < tmp.Length; i ++) { tmp[i] = Clone(other.args[i]); } args = tmp; } this.args = tmp; } public override void SetXsltContext(XsltContext context) { if (context == null) { throw XPathException.Create(Res.Xp_NoContext); } if (this.xsltContext != context) { xsltContext = context; foreach (Query argument in args) { argument.SetXsltContext(context); } XPathResultType[] argTypes = new XPathResultType[args.Count]; for(int i = 0; i < args.Count; i ++) { argTypes[i] = args[i].StaticType; } function = xsltContext.ResolveFunction(prefix, name, argTypes); // KB article allows to return null, see http://support.microsoft.com/?kbid=324462#6 if (function == null) { throw XPathException.Create(Res.Xp_UndefFunc, QName); } } } public override object Evaluate(XPathNodeIterator nodeIterator) { if (xsltContext == null) { throw XPathException.Create(Res.Xp_NoContext); } // calculate arguments: object[] argVals = new object[args.Count]; for (int i = 0; i < args.Count; i ++) { argVals[i] = args[i].Evaluate(nodeIterator); if (argVals[i] is XPathNodeIterator) {// ForBack Compat. To protect our queries from users. bug#372077 & 20006123 argVals[i] = new XPathSelectionIterator(nodeIterator.Current, args[i]); } } try { return ProcessResult(function.Invoke(xsltContext, argVals, nodeIterator.Current)); } catch(Exception ex) { throw XPathException.Create(Res.Xp_FunctionFailed, QName, ex); } } public override XPathNavigator MatchNode(XPathNavigator navigator) { if (name != "key" && prefix.Length != 0) { throw XPathException.Create(Res.Xp_InvalidPattern); } this.Evaluate(new XPathSingletonIterator(navigator, /*moved:*/true)); XPathNavigator nav = null; while ((nav = this.Advance()) != null) { if (nav.IsSamePosition(navigator)) { return nav; } } return nav; } public override XPathResultType StaticType { get { XPathResultType result = function != null ? function.ReturnType : XPathResultType.Any; if (result == XPathResultType.Error) { // In v.1 we confused Error & Any so now for backward compatibility we should allow users to return any of them. result = XPathResultType.Any; } return result; } } public override XPathNodeIterator Clone() { return new FunctionQuery(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", prefix.Length != 0 ? prefix + ':' + name : name); foreach(Query arg in this.args) { 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
- JsonWriter.cs
- SymDocumentType.cs
- MarginCollapsingState.cs
- externdll.cs
- ProviderSettings.cs
- LeafCellTreeNode.cs
- SecurityVerifiedMessage.cs
- SafeFileMappingHandle.cs
- ProfileService.cs
- UnmanagedMemoryStream.cs
- XmlSchemaAttributeGroupRef.cs
- PropertyGrid.cs
- FixedSOMElement.cs
- ColorDialog.cs
- StateItem.cs
- FileChangeNotifier.cs
- CorrelationResolver.cs
- PropertyTabAttribute.cs
- WebBodyFormatMessageProperty.cs
- CredentialCache.cs
- DateTimeFormatInfo.cs
- TextComposition.cs
- TraceFilter.cs
- AvTraceDetails.cs
- oledbmetadatacollectionnames.cs
- AuthStoreRoleProvider.cs
- _TLSstream.cs
- WindowsFormsLinkLabel.cs
- EpmSyndicationContentSerializer.cs
- Paragraph.cs
- SelectedDatesCollection.cs
- FormViewUpdateEventArgs.cs
- SafeNativeMethods.cs
- AppendHelper.cs
- CodeAccessSecurityEngine.cs
- FontFamily.cs
- MailHeaderInfo.cs
- FilterEventArgs.cs
- ViewCellSlot.cs
- RawUIStateInputReport.cs
- HostingEnvironmentException.cs
- WebPartPersonalization.cs
- ConvertersCollection.cs
- AlternateViewCollection.cs
- HwndAppCommandInputProvider.cs
- TypeReference.cs
- PagedDataSource.cs
- QuadraticBezierSegment.cs
- VectorCollectionValueSerializer.cs
- DbConnectionFactory.cs
- DataGridViewMethods.cs
- SelectionEditor.cs
- TreeView.cs
- RoutedEventArgs.cs
- RuntimeConfig.cs
- SortDescription.cs
- XmlSchemaAnnotated.cs
- QueryValue.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- _HelperAsyncResults.cs
- Visual3DCollection.cs
- CachedPathData.cs
- TimeEnumHelper.cs
- XmlStreamNodeWriter.cs
- CompositeCollection.cs
- DecoderReplacementFallback.cs
- XPathBuilder.cs
- ErrorStyle.cs
- PropertyInformationCollection.cs
- PackUriHelper.cs
- _HelperAsyncResults.cs
- PenLineCapValidation.cs
- Typography.cs
- DecimalAnimation.cs
- ToolStrip.cs
- BufferedOutputStream.cs
- DataObjectPastingEventArgs.cs
- RootProfilePropertySettingsCollection.cs
- WebConfigManager.cs
- GroupQuery.cs
- SettingsPropertyWrongTypeException.cs
- TableLayoutSettings.cs
- TargetException.cs
- ListViewInsertEventArgs.cs
- CategoryNameCollection.cs
- VersionPair.cs
- DbConnectionClosed.cs
- ListViewCancelEventArgs.cs
- Privilege.cs
- TypeUsageBuilder.cs
- AnnotationAuthorChangedEventArgs.cs
- CrossAppDomainChannel.cs
- SafeThreadHandle.cs
- ManagementOperationWatcher.cs
- ProcessModelInfo.cs
- FileNameEditor.cs
- HtmlInputControl.cs
- metadatamappinghashervisitor.cs
- DataGridColumnCollectionEditor.cs
- ToolStripPanelRow.cs