Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / XPathSelfQuery.cs / 1305376 / XPathSelfQuery.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 sealed class XPathSelfQuery : BaseAxisQuery { public XPathSelfQuery(Query qyInput, string Name, string Prefix, XPathNodeType Type) : base(qyInput, Name, Prefix, Type) {} private XPathSelfQuery(XPathSelfQuery other) : base(other) { } public override XPathNavigator Advance() { while ((currentNode = qyInput.Advance()) != null) { if (matches(currentNode)) { position = 1; return currentNode; } } return null; } public override XPathNodeIterator Clone() { return new XPathSelfQuery(this); } } } // 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
- FixedSOMTableCell.cs
- XmlReaderSettings.cs
- DataSourceCacheDurationConverter.cs
- JsonEncodingStreamWrapper.cs
- XmlNotation.cs
- ADConnectionHelper.cs
- QuaternionAnimationBase.cs
- StrokeNodeEnumerator.cs
- LabelDesigner.cs
- MeshGeometry3D.cs
- HealthMonitoringSectionHelper.cs
- EdmFunction.cs
- ErrorProvider.cs
- TabItem.cs
- ITextView.cs
- Speller.cs
- TiffBitmapDecoder.cs
- ToolStripLocationCancelEventArgs.cs
- ThreadExceptionDialog.cs
- WebEvents.cs
- WindowShowOrOpenTracker.cs
- DataKey.cs
- CodeDomSerializer.cs
- DbTransaction.cs
- TextSelectionHelper.cs
- MappingModelBuildProvider.cs
- XmlBinaryWriter.cs
- DisposableCollectionWrapper.cs
- ChannelServices.cs
- TypefaceMap.cs
- WindowsGraphics.cs
- SecUtil.cs
- ProcessModuleDesigner.cs
- AtomicFile.cs
- State.cs
- ToolStripButton.cs
- sqlpipe.cs
- PrintDialogException.cs
- XamlPointCollectionSerializer.cs
- ConfigurationLoaderException.cs
- DayRenderEvent.cs
- ObjectListItemCollection.cs
- CacheDependency.cs
- XmlSchemaAnnotation.cs
- xmlsaver.cs
- DbConnectionPool.cs
- DisplayMemberTemplateSelector.cs
- SecurityKeyType.cs
- Brush.cs
- UserControl.cs
- SafeCryptoHandles.cs
- AuthenticationModuleElement.cs
- Bitmap.cs
- PeerObject.cs
- SystemIcmpV4Statistics.cs
- VolatileEnlistmentState.cs
- MarshalDirectiveException.cs
- SqlCachedBuffer.cs
- RootProfilePropertySettingsCollection.cs
- TextElement.cs
- ContainerAction.cs
- MultiPageTextView.cs
- DecoderReplacementFallback.cs
- AssemblyBuilderData.cs
- ListView.cs
- DelayedRegex.cs
- X509CertificateStore.cs
- TemplateApplicationHelper.cs
- HandlerFactoryWrapper.cs
- GB18030Encoding.cs
- TextServicesLoader.cs
- SemanticAnalyzer.cs
- RuleSetDialog.cs
- DesignerCategoryAttribute.cs
- XmlArrayItemAttributes.cs
- GetPageNumberCompletedEventArgs.cs
- XmlReaderDelegator.cs
- Vars.cs
- listitem.cs
- SqlUdtInfo.cs
- HebrewCalendar.cs
- formatstringdialog.cs
- StreamWriter.cs
- DataViewSetting.cs
- GridViewCancelEditEventArgs.cs
- RequestCachePolicyConverter.cs
- WindowsIdentity.cs
- SplashScreen.cs
- Image.cs
- RequestNavigateEventArgs.cs
- InternalCache.cs
- XamlTypeMapper.cs
- AuthenticationSection.cs
- streamingZipPartStream.cs
- OracleConnectionStringBuilder.cs
- Stroke.cs
- VectorValueSerializer.cs
- UnsafeNativeMethods.cs
- AuthenticationModulesSection.cs
- _NegoState.cs