Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / Filter.cs / 1305376 / Filter.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; internal class Filter : AstNode { private AstNode input; private AstNode condition; public Filter( AstNode input, AstNode condition) { this.input = input; this.condition = condition; } public override AstType Type { get { return AstType.Filter; } } public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } } public AstNode Input { get { return input; } } public AstNode Condition { get { return condition; } } } } // 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; internal class Filter : AstNode { private AstNode input; private AstNode condition; public Filter( AstNode input, AstNode condition) { this.input = input; this.condition = condition; } public override AstType Type { get { return AstType.Filter; } } public override XPathResultType ReturnType { get { return XPathResultType.NodeSet; } } public AstNode Input { get { return input; } } public AstNode Condition { get { return condition; } } } } // 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
- AdapterDictionary.cs
- TitleStyle.cs
- EntityCommand.cs
- PtsPage.cs
- SessionEndingCancelEventArgs.cs
- DataErrorValidationRule.cs
- TableHeaderCell.cs
- AssemblyAttributes.cs
- XmlTypeAttribute.cs
- TransactedBatchingElement.cs
- CreateUserErrorEventArgs.cs
- OutputCacheModule.cs
- AutoFocusStyle.xaml.cs
- MenuItemCollection.cs
- StringBuilder.cs
- DataGridDetailsPresenter.cs
- GiveFeedbackEventArgs.cs
- ParseChildrenAsPropertiesAttribute.cs
- _NegoState.cs
- SamlAssertion.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- ClusterSafeNativeMethods.cs
- RemotingSurrogateSelector.cs
- Peer.cs
- DrawingCollection.cs
- BinaryExpression.cs
- RegexCode.cs
- ByteStorage.cs
- PasswordRecovery.cs
- PreProcessInputEventArgs.cs
- Bitmap.cs
- SynthesizerStateChangedEventArgs.cs
- Pair.cs
- GraphicsContext.cs
- BinaryCommonClasses.cs
- SafeFileMappingHandle.cs
- Transform3DGroup.cs
- SpeechRecognizer.cs
- DataIdProcessor.cs
- AsnEncodedData.cs
- SqlMethodTransformer.cs
- EnvelopedPkcs7.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- TreeNodeClickEventArgs.cs
- StatusBar.cs
- DataGridRowHeaderAutomationPeer.cs
- DataServiceExpressionVisitor.cs
- MouseEventArgs.cs
- XmlSchemaIdentityConstraint.cs
- HitTestWithPointDrawingContextWalker.cs
- Select.cs
- RtfControls.cs
- DeploymentSectionCache.cs
- ConfigurationSettings.cs
- Exception.cs
- AppDomainProtocolHandler.cs
- BridgeDataReader.cs
- IISUnsafeMethods.cs
- NumberSubstitution.cs
- SettingsProviderCollection.cs
- TreeViewImageIndexConverter.cs
- Mutex.cs
- mactripleDES.cs
- GeometryModel3D.cs
- Literal.cs
- CompilerGlobalScopeAttribute.cs
- PropertyHelper.cs
- TaskHelper.cs
- clipboard.cs
- KeyValuePairs.cs
- UpdatePanel.cs
- ResXResourceWriter.cs
- ParameterCollection.cs
- TextEmbeddedObject.cs
- WsiProfilesElement.cs
- CodeGroup.cs
- ScalarOps.cs
- AutomationIdentifier.cs
- WindowsFont.cs
- ToggleProviderWrapper.cs
- TextFindEngine.cs
- SqlError.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- DPCustomTypeDescriptor.cs
- ObjectSet.cs
- DatagridviewDisplayedBandsData.cs
- UseAttributeSetsAction.cs
- Sql8ConformanceChecker.cs
- BasicHttpSecurity.cs
- Coordinator.cs
- OracleTimeSpan.cs
- SerializerDescriptor.cs
- ObjectCloneHelper.cs
- MaterialGroup.cs
- PopOutPanel.cs
- X509CertificateStore.cs
- VolatileEnlistmentState.cs
- UnsafeNativeMethods.cs
- XmlConvert.cs
- SeparatorAutomationPeer.cs