Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PairComparer.cs
- HtmlContainerControl.cs
- DesignerProperties.cs
- CatalogZone.cs
- NameValueConfigurationElement.cs
- FillBehavior.cs
- UnsafeCollabNativeMethods.cs
- ThemeableAttribute.cs
- StoryFragments.cs
- InternalMappingException.cs
- IPPacketInformation.cs
- PageOutputColor.cs
- MetafileHeaderWmf.cs
- DbConnectionPoolOptions.cs
- TemplateBuilder.cs
- AuthenticationManager.cs
- SoapEnumAttribute.cs
- HttpValueCollection.cs
- Operand.cs
- ErrorWrapper.cs
- StringResourceManager.cs
- Translator.cs
- TextBoxBase.cs
- MimeFormReflector.cs
- NamespaceQuery.cs
- Module.cs
- Vector3DAnimationUsingKeyFrames.cs
- COSERVERINFO.cs
- HttpRequestCacheValidator.cs
- ThicknessAnimation.cs
- XmlNamespaceMappingCollection.cs
- DbMetaDataCollectionNames.cs
- MenuItemCollection.cs
- RemotingClientProxy.cs
- MetafileHeader.cs
- AccessDataSourceWizardForm.cs
- WebPartEditorOkVerb.cs
- SHA1CryptoServiceProvider.cs
- ToolStripSettings.cs
- ModelPerspective.cs
- ActivityUtilities.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- SqlDataSourceFilteringEventArgs.cs
- RSAPKCS1SignatureDeformatter.cs
- ButtonFieldBase.cs
- AccessDataSource.cs
- SaveFileDialog.cs
- TraceFilter.cs
- OleDbFactory.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- RowsCopiedEventArgs.cs
- EncryptedXml.cs
- EpmTargetPathSegment.cs
- NotCondition.cs
- AnnotationDocumentPaginator.cs
- UnsafeNativeMethods.cs
- SchemaMerger.cs
- FileDialogCustomPlace.cs
- XPathExpr.cs
- WebBrowserPermission.cs
- StateRuntime.cs
- XmlAttributeAttribute.cs
- NamedPipeWorkerProcess.cs
- BooleanKeyFrameCollection.cs
- OdbcDataAdapter.cs
- SendMailErrorEventArgs.cs
- SemanticTag.cs
- ScriptReferenceBase.cs
- EntityDataSourceViewSchema.cs
- DataGridColumnHeaderCollection.cs
- UIPropertyMetadata.cs
- HttpModuleActionCollection.cs
- AddressAlreadyInUseException.cs
- KerberosSecurityTokenProvider.cs
- BindUriHelper.cs
- RegistrySecurity.cs
- ListItemConverter.cs
- NoPersistScope.cs
- InstanceDataCollectionCollection.cs
- Matrix.cs
- AutomationElementCollection.cs
- SessionStateSection.cs
- DeferredRunTextReference.cs
- controlskin.cs
- ObjectListTitleAttribute.cs
- QilChoice.cs
- ExpressionPrefixAttribute.cs
- XmlChildNodes.cs
- SHA1Managed.cs
- ExtensionQuery.cs
- ReferencedAssembly.cs
- UInt16Converter.cs
- TypedRowGenerator.cs
- Repeater.cs
- HttpModulesSection.cs
- AsyncPostBackErrorEventArgs.cs
- OutputCacheSettingsSection.cs
- AuthorizationRule.cs
- XmlWhitespace.cs
- returneventsaver.cs