Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / DescendantBaseQuery.cs / 1305376 / DescendantBaseQuery.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; internal abstract class DescendantBaseQuery : BaseAxisQuery { protected bool matchSelf; protected bool abbrAxis; public DescendantBaseQuery(Query qyParent, string Name, string Prefix, XPathNodeType Type, bool matchSelf, bool abbrAxis) : base(qyParent, Name, Prefix, Type) { this.matchSelf = matchSelf; this.abbrAxis = abbrAxis; } public DescendantBaseQuery(DescendantBaseQuery other) : base(other) { this.matchSelf = other.matchSelf; this.abbrAxis = other.abbrAxis; } public override XPathNavigator MatchNode(XPathNavigator context) { if (context != null) { if (!abbrAxis) { throw XPathException.Create(Res.Xp_InvalidPattern); } XPathNavigator result = null; if (matches(context)) { if (matchSelf) { if ((result = qyInput.MatchNode(context)) != null) { return result; } } XPathNavigator anc = context.Clone(); while (anc.MoveToParent()) { if ((result = qyInput.MatchNode(anc)) != null) { return result; } } } } return null; } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); if (matchSelf) { w.WriteAttributeString("self", "yes"); } if (NameTest) { w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name); } if (TypeTest != XPathNodeType.Element) { w.WriteAttributeString("nodeType", TypeTest.ToString()); } qyInput.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; internal abstract class DescendantBaseQuery : BaseAxisQuery { protected bool matchSelf; protected bool abbrAxis; public DescendantBaseQuery(Query qyParent, string Name, string Prefix, XPathNodeType Type, bool matchSelf, bool abbrAxis) : base(qyParent, Name, Prefix, Type) { this.matchSelf = matchSelf; this.abbrAxis = abbrAxis; } public DescendantBaseQuery(DescendantBaseQuery other) : base(other) { this.matchSelf = other.matchSelf; this.abbrAxis = other.abbrAxis; } public override XPathNavigator MatchNode(XPathNavigator context) { if (context != null) { if (!abbrAxis) { throw XPathException.Create(Res.Xp_InvalidPattern); } XPathNavigator result = null; if (matches(context)) { if (matchSelf) { if ((result = qyInput.MatchNode(context)) != null) { return result; } } XPathNavigator anc = context.Clone(); while (anc.MoveToParent()) { if ((result = qyInput.MatchNode(anc)) != null) { return result; } } } } return null; } public override void PrintQuery(XmlWriter w) { w.WriteStartElement(this.GetType().Name); if (matchSelf) { w.WriteAttributeString("self", "yes"); } if (NameTest) { w.WriteAttributeString("name", Prefix.Length != 0 ? Prefix + ':' + Name : Name); } if (TypeTest != XPathNodeType.Element) { w.WriteAttributeString("nodeType", TypeTest.ToString()); } qyInput.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
- EventLogTraceListener.cs
- MetadataAssemblyHelper.cs
- ImportedNamespaceContextItem.cs
- UnionExpr.cs
- XNodeNavigator.cs
- SoapSchemaExporter.cs
- SubMenuStyleCollection.cs
- XmlSchemaNotation.cs
- UrlEncodedParameterWriter.cs
- HtmlControl.cs
- DesigntimeLicenseContext.cs
- SQLSingleStorage.cs
- WindowInteropHelper.cs
- cookiecontainer.cs
- BitmapEffectCollection.cs
- SqlLiftIndependentRowExpressions.cs
- ActivationProxy.cs
- HttpPostProtocolReflector.cs
- EntityTemplateFactory.cs
- DoubleConverter.cs
- PeerPresenceInfo.cs
- FacetDescriptionElement.cs
- ValueSerializerAttribute.cs
- BasicDesignerLoader.cs
- DeviceSpecific.cs
- OdbcReferenceCollection.cs
- AsyncStreamReader.cs
- Triangle.cs
- ConfigurationSectionCollection.cs
- XPathNodeInfoAtom.cs
- ValidationError.cs
- OleDbConnection.cs
- WebPartCloseVerb.cs
- SplitterEvent.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- RichTextBoxConstants.cs
- WebWorkflowRole.cs
- FrameworkContextData.cs
- ToolStripDropTargetManager.cs
- CompilerResults.cs
- WorkflowInspectionServices.cs
- SelectionProviderWrapper.cs
- ControlEvent.cs
- CqlErrorHelper.cs
- UnaryQueryOperator.cs
- HtmlEncodedRawTextWriter.cs
- HashAlgorithm.cs
- HttpPostedFile.cs
- TextDecorationCollectionConverter.cs
- RectangleConverter.cs
- SingleStorage.cs
- SystemThemeKey.cs
- UserThread.cs
- ThrowHelper.cs
- ShaderEffect.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- MetabaseServerConfig.cs
- TraceFilter.cs
- InfocardChannelParameter.cs
- Win32Native.cs
- DataGridViewColumnEventArgs.cs
- NavigationProperty.cs
- ContextMenuStrip.cs
- AssemblyName.cs
- SRGSCompiler.cs
- TypeExtensionConverter.cs
- MimePart.cs
- FixedPosition.cs
- ReferencedAssembly.cs
- XmlSchemaAttribute.cs
- AssemblyBuilder.cs
- AnnotationComponentManager.cs
- ContactManager.cs
- AccessDataSourceView.cs
- SqlCacheDependencyDatabase.cs
- WhitespaceRule.cs
- TextEffect.cs
- HttpWebResponse.cs
- PageSettings.cs
- CompareInfo.cs
- InvokeProviderWrapper.cs
- EntityProxyTypeInfo.cs
- ConversionValidationRule.cs
- XmlSecureResolver.cs
- sqlcontext.cs
- relpropertyhelper.cs
- VectorCollectionValueSerializer.cs
- OdbcException.cs
- ExpressionNode.cs
- ObjectNotFoundException.cs
- AnnotationHighlightLayer.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- AlgoModule.cs
- PageVisual.cs
- DbCommandTree.cs
- storepermission.cs
- BuildProviderCollection.cs
- ValidationHelper.cs
- CipherData.cs
- Literal.cs