Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / XPathBinder.cs / 1 / XPathBinder.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Globalization; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Security.Permissions; using System.Xml; using System.Xml.XPath; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class XPathBinder { ///private XPathBinder() { } /// /// public static object Eval(object container, string xPath) { IXmlNamespaceResolver resolver = null; return Eval(container, xPath, resolver); } public static object Eval(object container, string xPath, IXmlNamespaceResolver resolver) { if (container == null) { throw new ArgumentNullException("container"); } if (String.IsNullOrEmpty(xPath)) { throw new ArgumentNullException("xPath"); } IXPathNavigable node = container as IXPathNavigable; if (node == null) { throw new ArgumentException(SR.GetString(SR.XPathBinder_MustBeIXPathNavigable, container.GetType().FullName)); } XPathNavigator navigator = node.CreateNavigator(); object retValue = navigator.Evaluate(xPath, resolver); // If we get back an XPathNodeIterator instead of a simple object, advance // the iterator to the first node and return the value. XPathNodeIterator iterator = retValue as XPathNodeIterator; if (iterator != null) { if (iterator.MoveNext()) { retValue = iterator.Current.Value; } else { retValue = null; } } return retValue; } ////// public static string Eval(object container, string xPath, string format) { return Eval(container, xPath, format, null); } public static string Eval(object container, string xPath, string format, IXmlNamespaceResolver resolver) { object value = XPathBinder.Eval(container, xPath, resolver); if (value == null) { return String.Empty; } else { if (String.IsNullOrEmpty(format)) { return value.ToString(); } else { return String.Format(format, value); } } } ////// Evaluates an XPath query with respect to a context IXPathNavigable object that returns a NodeSet. /// public static IEnumerable Select(object container, string xPath) { return Select(container, xPath, null); } public static IEnumerable Select(object container, string xPath, IXmlNamespaceResolver resolver) { if (container == null) { throw new ArgumentNullException("container"); } if (String.IsNullOrEmpty(xPath)) { throw new ArgumentNullException("xPath"); } ArrayList results = new ArrayList(); IXPathNavigable node = container as IXPathNavigable; if (node == null) { throw new ArgumentException(SR.GetString(SR.XPathBinder_MustBeIXPathNavigable, container.GetType().FullName)); } XPathNavigator navigator = node.CreateNavigator(); XPathNodeIterator iterator = navigator.Select(xPath, resolver); while (iterator.MoveNext()) { IHasXmlNode hasXmlNode = iterator.Current as IHasXmlNode; if (hasXmlNode == null) { throw new InvalidOperationException(SR.GetString(SR.XPathBinder_MustHaveXmlNodes)); } results.Add(hasXmlNode.GetNode()); } return results; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Globalization; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Data; using System.Security.Permissions; using System.Xml; using System.Xml.XPath; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class XPathBinder { ///private XPathBinder() { } /// /// public static object Eval(object container, string xPath) { IXmlNamespaceResolver resolver = null; return Eval(container, xPath, resolver); } public static object Eval(object container, string xPath, IXmlNamespaceResolver resolver) { if (container == null) { throw new ArgumentNullException("container"); } if (String.IsNullOrEmpty(xPath)) { throw new ArgumentNullException("xPath"); } IXPathNavigable node = container as IXPathNavigable; if (node == null) { throw new ArgumentException(SR.GetString(SR.XPathBinder_MustBeIXPathNavigable, container.GetType().FullName)); } XPathNavigator navigator = node.CreateNavigator(); object retValue = navigator.Evaluate(xPath, resolver); // If we get back an XPathNodeIterator instead of a simple object, advance // the iterator to the first node and return the value. XPathNodeIterator iterator = retValue as XPathNodeIterator; if (iterator != null) { if (iterator.MoveNext()) { retValue = iterator.Current.Value; } else { retValue = null; } } return retValue; } ////// public static string Eval(object container, string xPath, string format) { return Eval(container, xPath, format, null); } public static string Eval(object container, string xPath, string format, IXmlNamespaceResolver resolver) { object value = XPathBinder.Eval(container, xPath, resolver); if (value == null) { return String.Empty; } else { if (String.IsNullOrEmpty(format)) { return value.ToString(); } else { return String.Format(format, value); } } } ////// Evaluates an XPath query with respect to a context IXPathNavigable object that returns a NodeSet. /// public static IEnumerable Select(object container, string xPath) { return Select(container, xPath, null); } public static IEnumerable Select(object container, string xPath, IXmlNamespaceResolver resolver) { if (container == null) { throw new ArgumentNullException("container"); } if (String.IsNullOrEmpty(xPath)) { throw new ArgumentNullException("xPath"); } ArrayList results = new ArrayList(); IXPathNavigable node = container as IXPathNavigable; if (node == null) { throw new ArgumentException(SR.GetString(SR.XPathBinder_MustBeIXPathNavigable, container.GetType().FullName)); } XPathNavigator navigator = node.CreateNavigator(); XPathNodeIterator iterator = navigator.Select(xPath, resolver); while (iterator.MoveNext()) { IHasXmlNode hasXmlNode = iterator.Current as IHasXmlNode; if (hasXmlNode == null) { throw new InvalidOperationException(SR.GetString(SR.XPathBinder_MustHaveXmlNodes)); } results.Add(hasXmlNode.GetNode()); } return results; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BridgeDataRecord.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- PromptEventArgs.cs
- FormsAuthenticationEventArgs.cs
- DataGridHeaderBorder.cs
- XmlImplementation.cs
- DataListItemCollection.cs
- FunctionQuery.cs
- PermissionToken.cs
- SemanticTag.cs
- SecurityTokenValidationException.cs
- LicenseException.cs
- TextRange.cs
- SqlCaseSimplifier.cs
- HtmlButton.cs
- HttpModuleAction.cs
- TextRunProperties.cs
- DocumentXmlWriter.cs
- DataServiceQuery.cs
- ResourceContainer.cs
- ValidationHelper.cs
- WindowsListBox.cs
- ColorContextHelper.cs
- TrackingProvider.cs
- TextBoxAutoCompleteSourceConverter.cs
- ToolStripGripRenderEventArgs.cs
- ScrollItemProviderWrapper.cs
- SrgsSemanticInterpretationTag.cs
- XmlSchemaFacet.cs
- ReadOnlyHierarchicalDataSource.cs
- UnsafeNativeMethods.cs
- GenericAuthenticationEventArgs.cs
- SafeCloseHandleCritical.cs
- EntryIndex.cs
- CompModSwitches.cs
- StorageTypeMapping.cs
- BuiltInPermissionSets.cs
- EditorAttribute.cs
- GPPOINTF.cs
- ThousandthOfEmRealDoubles.cs
- ChameleonKey.cs
- HttpException.cs
- DataSourceDescriptorCollection.cs
- RectIndependentAnimationStorage.cs
- CatalogPart.cs
- StrokeCollection.cs
- ChameleonKey.cs
- X509CertificateClaimSet.cs
- TdsValueSetter.cs
- FormClosedEvent.cs
- LocalizedNameDescriptionPair.cs
- TerminateDesigner.cs
- LabelEditEvent.cs
- XmlSchema.cs
- WebControlParameterProxy.cs
- BmpBitmapEncoder.cs
- XmlValidatingReader.cs
- BindingSourceDesigner.cs
- ActivityIdHeader.cs
- WindowsIdentity.cs
- ChannelTokenTypeConverter.cs
- StreamHelper.cs
- SynthesizerStateChangedEventArgs.cs
- ImageFormatConverter.cs
- ActivationArguments.cs
- MimeXmlReflector.cs
- HtmlToClrEventProxy.cs
- SecurityTokenInclusionMode.cs
- LoginUtil.cs
- FontCacheLogic.cs
- DefaultValueTypeConverter.cs
- AggregateNode.cs
- VolatileResourceManager.cs
- _NegotiateClient.cs
- MediaTimeline.cs
- NotFiniteNumberException.cs
- RTTypeWrapper.cs
- UnsafeNativeMethodsMilCoreApi.cs
- ReadOnlyHierarchicalDataSourceView.cs
- QueryGeneratorBase.cs
- SmiConnection.cs
- IImplicitResourceProvider.cs
- RightsManagementInformation.cs
- ButtonChrome.cs
- BitStack.cs
- Binding.cs
- ToolStripArrowRenderEventArgs.cs
- DataGridViewColumnTypeEditor.cs
- TranslateTransform.cs
- ProvidePropertyAttribute.cs
- DiscoveryDocumentLinksPattern.cs
- ClientSettingsProvider.cs
- ButtonChrome.cs
- XmlSchemaObject.cs
- SmtpReplyReader.cs
- SpecularMaterial.cs
- WorkflowEventArgs.cs
- OracleDataReader.cs
- ConfigXmlCDataSection.cs
- SystemColors.cs