Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Xml / System / Xml / XPath / Internal / VariableQuery.cs / 1 / 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
- DebugController.cs
- SecurityVerifiedMessage.cs
- SafeArrayRankMismatchException.cs
- DbProviderFactoriesConfigurationHandler.cs
- UndirectedGraph.cs
- Win32Native.cs
- SQLResource.cs
- __FastResourceComparer.cs
- StringBlob.cs
- ACL.cs
- GacUtil.cs
- MessageHeaderAttribute.cs
- HttpWrapper.cs
- cookie.cs
- TableDetailsRow.cs
- LabelEditEvent.cs
- SocketPermission.cs
- Hyperlink.cs
- ToolStrip.cs
- ResourceWriter.cs
- InternalUserCancelledException.cs
- XmlNamespaceDeclarationsAttribute.cs
- BufferBuilder.cs
- WebCodeGenerator.cs
- RecordBuilder.cs
- Int16Converter.cs
- FrameworkElementFactory.cs
- HtmlTableRowCollection.cs
- FixedFindEngine.cs
- AssociationProvider.cs
- TdsParameterSetter.cs
- HttpStaticObjectsCollectionWrapper.cs
- WmlImageAdapter.cs
- ResXResourceWriter.cs
- GradientStop.cs
- SingletonConnectionReader.cs
- Number.cs
- ValidationHelpers.cs
- FontFamily.cs
- BindingMemberInfo.cs
- _ConnectionGroup.cs
- _SecureChannel.cs
- MenuAdapter.cs
- NamespaceInfo.cs
- PropertyEmitter.cs
- QueryOperatorEnumerator.cs
- NodeInfo.cs
- TemplateControlParser.cs
- ZipIOExtraFieldElement.cs
- TraversalRequest.cs
- FilterEventArgs.cs
- StatusBarDrawItemEvent.cs
- GeneratedContractType.cs
- ByteStreamGeometryContext.cs
- RuntimeEnvironment.cs
- AsyncOperationManager.cs
- TableParagraph.cs
- ZipIOCentralDirectoryFileHeader.cs
- AsyncResult.cs
- StretchValidation.cs
- CacheHelper.cs
- EnumBuilder.cs
- FederatedMessageSecurityOverHttpElement.cs
- SpotLight.cs
- validation.cs
- _ChunkParse.cs
- ToolTipAutomationPeer.cs
- Encoder.cs
- ConnectorSelectionGlyph.cs
- RangeValidator.cs
- XPathDocumentBuilder.cs
- RegistrySecurity.cs
- TemplateAction.cs
- WsiProfilesElement.cs
- ViewStateModeByIdAttribute.cs
- StartUpEventArgs.cs
- ping.cs
- PresentationAppDomainManager.cs
- BmpBitmapEncoder.cs
- DrawingServices.cs
- Mutex.cs
- COMException.cs
- FileDetails.cs
- DerivedKeySecurityToken.cs
- WmfPlaceableFileHeader.cs
- ButtonBase.cs
- DictationGrammar.cs
- FastPropertyAccessor.cs
- EdmError.cs
- MappedMetaModel.cs
- StorageModelBuildProvider.cs
- NamedPipeAppDomainProtocolHandler.cs
- MtomMessageEncoder.cs
- DataTrigger.cs
- NonParentingControl.cs
- RenderTargetBitmap.cs
- ComplexObject.cs
- RewritingProcessor.cs
- DesignerVerb.cs
- RichTextBox.cs