Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / VariableQuery.cs / 1305376 / VariableQuery.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; internal sealed class VariableQuery : ExtensionQuery { private IXsltContextVariable variable; public VariableQuery(string name, string prefix) : base(prefix, name) {} private VariableQuery(VariableQuery other) : base(other) { this.variable = other.variable; } public override void SetXsltContext(XsltContext context) { if (context == null) { throw XPathException.Create(Res.Xp_NoContext); } if (this.xsltContext != context) { xsltContext = context; variable = xsltContext.ResolveVariable(prefix, name); // Since null is allowed for ResolveFunction, allow it for ResolveVariable as well if (variable == null) { throw XPathException.Create(Res.Xp_UndefVar, QName); } } } public override object Evaluate(XPathNodeIterator nodeIterator) { if (xsltContext == null) { throw XPathException.Create(Res.Xp_NoContext); } return ProcessResult(variable.Evaluate(xsltContext)); } public override XPathResultType StaticType { get { if (variable != null) { // Temp. fix to overcome dependency on static type return GetXPathType(Evaluate(null)); } XPathResultType result = variable != null ? variable.VariableType : 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 VariableQuery(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", prefix.Length != 0 ? prefix + ':' + name : name); 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; internal sealed class VariableQuery : ExtensionQuery { private IXsltContextVariable variable; public VariableQuery(string name, string prefix) : base(prefix, name) {} private VariableQuery(VariableQuery other) : base(other) { this.variable = other.variable; } public override void SetXsltContext(XsltContext context) { if (context == null) { throw XPathException.Create(Res.Xp_NoContext); } if (this.xsltContext != context) { xsltContext = context; variable = xsltContext.ResolveVariable(prefix, name); // Since null is allowed for ResolveFunction, allow it for ResolveVariable as well if (variable == null) { throw XPathException.Create(Res.Xp_UndefVar, QName); } } } public override object Evaluate(XPathNodeIterator nodeIterator) { if (xsltContext == null) { throw XPathException.Create(Res.Xp_NoContext); } return ProcessResult(variable.Evaluate(xsltContext)); } public override XPathResultType StaticType { get { if (variable != null) { // Temp. fix to overcome dependency on static type return GetXPathType(Evaluate(null)); } XPathResultType result = variable != null ? variable.VariableType : 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 VariableQuery(this); } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); w.WriteAttributeString("name", prefix.Length != 0 ? prefix + ':' + name : name); 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
- StringCollectionEditor.cs
- CompatibleIComparer.cs
- _NestedMultipleAsyncResult.cs
- UniqueSet.cs
- LinkTarget.cs
- ParallelLoopState.cs
- WebPartAuthorizationEventArgs.cs
- ValueOfAction.cs
- QuaternionConverter.cs
- ToolStripRenderer.cs
- safemediahandle.cs
- BitmapEffectDrawingContextState.cs
- ResourceType.cs
- Thickness.cs
- Utils.cs
- columnmapkeybuilder.cs
- ToolBarButtonClickEvent.cs
- TextSpanModifier.cs
- SqlNamer.cs
- MappingItemCollection.cs
- EntityDataSourceContainerNameConverter.cs
- Subtree.cs
- QueryOperator.cs
- TreeViewImageKeyConverter.cs
- TransactedReceiveScope.cs
- DesignerAutoFormatCollection.cs
- HexParser.cs
- StickyNoteHelper.cs
- ReceiveContextCollection.cs
- Typeface.cs
- HttpContext.cs
- FormViewPagerRow.cs
- KeyedHashAlgorithm.cs
- ColorTranslator.cs
- ContourSegment.cs
- LoadWorkflowByKeyAsyncResult.cs
- HttpPostClientProtocol.cs
- WebProxyScriptElement.cs
- CacheRequest.cs
- WindowsStatic.cs
- SecurityUniqueId.cs
- TypeToArgumentTypeConverter.cs
- AvTraceFormat.cs
- Margins.cs
- DataSourceConverter.cs
- COM2ExtendedTypeConverter.cs
- FileRecordSequence.cs
- UIElement3D.cs
- MsmqHostedTransportManager.cs
- QilTypeChecker.cs
- HeaderPanel.cs
- EncoderBestFitFallback.cs
- OleDbStruct.cs
- SendKeys.cs
- GridItem.cs
- CodeTypeDelegate.cs
- VerificationAttribute.cs
- TypeSystem.cs
- TrueReadOnlyCollection.cs
- SQLResource.cs
- ToolStripRendererSwitcher.cs
- CompressStream.cs
- BaseCollection.cs
- SQLDateTime.cs
- KnownColorTable.cs
- AutomationElement.cs
- HeaderLabel.cs
- SqlTriggerContext.cs
- ListControl.cs
- PerformanceCounterNameAttribute.cs
- ViewStateModeByIdAttribute.cs
- DataGridTable.cs
- ExpressionBuilder.cs
- Condition.cs
- DesignSurfaceCollection.cs
- RNGCryptoServiceProvider.cs
- XmlWriter.cs
- SpellerHighlightLayer.cs
- ColorConvertedBitmapExtension.cs
- RSAPKCS1SignatureFormatter.cs
- ElementHost.cs
- UnsafeNativeMethods.cs
- BufferBuilder.cs
- DataBindingList.cs
- FilteredDataSetHelper.cs
- DeobfuscatingStream.cs
- IProvider.cs
- TimeoutConverter.cs
- DataGridViewToolTip.cs
- PasswordPropertyTextAttribute.cs
- AssemblyAttributesGoHere.cs
- XmlSerializerFactory.cs
- ExceptionWrapper.cs
- RequestCacheEntry.cs
- RelationshipConverter.cs
- JoinTreeNode.cs
- AliasedSlot.cs
- CharConverter.cs
- XPSSignatureDefinition.cs
- IIS7ConfigurationLoader.cs