Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartConnectVerb.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- DataGridLengthConverter.cs
- TimeSpanStorage.cs
- DataGridViewCellPaintingEventArgs.cs
- IntranetCredentialPolicy.cs
- RSAPKCS1SignatureDeformatter.cs
- TileModeValidation.cs
- AtomContentProperty.cs
- FormViewAutoFormat.cs
- WindowsComboBox.cs
- BaseParaClient.cs
- StylusCollection.cs
- BrowsableAttribute.cs
- CrossAppDomainChannel.cs
- DesignerHelpers.cs
- StdValidatorsAndConverters.cs
- SmtpMail.cs
- LocalBuilder.cs
- InputQueueChannelAcceptor.cs
- IntegrationExceptionEventArgs.cs
- LinqDataSourceDisposeEventArgs.cs
- DependencyPropertyValueSerializer.cs
- HtmlTableRowCollection.cs
- BamlRecordWriter.cs
- SoapIncludeAttribute.cs
- WindowsListViewItemCheckBox.cs
- SimpleType.cs
- Utils.cs
- TextTreeDeleteContentUndoUnit.cs
- ActiveXHost.cs
- Wizard.cs
- RC2.cs
- PrePostDescendentsWalker.cs
- sqlpipe.cs
- FragmentQueryProcessor.cs
- D3DImage.cs
- Utils.cs
- PersonalizationProviderHelper.cs
- GeneralTransformGroup.cs
- DockPattern.cs
- BlobPersonalizationState.cs
- Timer.cs
- RuntimeConfigurationRecord.cs
- DBConnection.cs
- CodeDirectionExpression.cs
- ToolStripSystemRenderer.cs
- HttpWriter.cs
- BindableAttribute.cs
- Condition.cs
- _CacheStreams.cs
- XmlNamespaceMappingCollection.cs
- ToolBarButtonClickEvent.cs
- WsatProxy.cs
- FolderBrowserDialog.cs
- AdapterDictionary.cs
- TransferMode.cs
- KeyFrames.cs
- UnsafePeerToPeerMethods.cs
- SafeUserTokenHandle.cs
- WebBrowser.cs
- _FtpDataStream.cs
- PrefixHandle.cs
- CompiledIdentityConstraint.cs
- TransactionOptions.cs
- ContractMethodParameterInfo.cs
- VerificationAttribute.cs
- ElasticEase.cs
- GridViewPageEventArgs.cs
- DecodeHelper.cs
- AdapterDictionary.cs
- ContextProperty.cs
- SqlDataAdapter.cs
- SupportsPreviewControlAttribute.cs
- PersonalizationAdministration.cs
- IgnoreSectionHandler.cs
- JsonReaderDelegator.cs
- SecurityException.cs
- BmpBitmapEncoder.cs
- EntryWrittenEventArgs.cs
- RelationshipConstraintValidator.cs
- TrackPointCollection.cs
- XpsImageSerializationService.cs
- SystemIPInterfaceProperties.cs
- ProtocolViolationException.cs
- XmlSchemaChoice.cs
- EditCommandColumn.cs
- AttributeQuery.cs
- GridItemPatternIdentifiers.cs
- CodeTypeMemberCollection.cs
- PrincipalPermission.cs
- SelectionItemProviderWrapper.cs
- XamlFigureLengthSerializer.cs
- Vector3DAnimationBase.cs
- TextRunProperties.cs
- ContentValidator.cs
- _ListenerResponseStream.cs
- FixedDocumentPaginator.cs
- CustomAttributeSerializer.cs
- MappingItemCollection.cs