Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- MouseButton.cs
- OlePropertyStructs.cs
- TextBreakpoint.cs
- XsltLibrary.cs
- AutomationProperties.cs
- AdPostCacheSubstitution.cs
- SafeMarshalContext.cs
- ImportDesigner.xaml.cs
- _TimerThread.cs
- XmlElementAttribute.cs
- WindowsToolbarAsMenu.cs
- MsmqOutputMessage.cs
- InternalControlCollection.cs
- DiagnosticEventProvider.cs
- MouseActionConverter.cs
- DataGridRowHeaderAutomationPeer.cs
- WebRequestModulesSection.cs
- AbsoluteQuery.cs
- StagingAreaInputItem.cs
- FontCacheUtil.cs
- NativeCompoundFileAPIs.cs
- DifferencingCollection.cs
- SafeEventLogReadHandle.cs
- StateMachineDesignerPaint.cs
- webclient.cs
- SystemFonts.cs
- MemberAccessException.cs
- PageAsyncTask.cs
- SingleKeyFrameCollection.cs
- ContentDisposition.cs
- control.ime.cs
- InfoCardProofToken.cs
- SqlSelectStatement.cs
- AdjustableArrowCap.cs
- XmlSchemaObjectTable.cs
- ServiceThrottlingElement.cs
- UnsafeNativeMethods.cs
- ReadOnlyKeyedCollection.cs
- SmiEventSink_DeferedProcessing.cs
- AddValidationError.cs
- GuidTagList.cs
- ToolStripDropDownItem.cs
- XPathDescendantIterator.cs
- DataGridSortCommandEventArgs.cs
- FileSecurity.cs
- ServiceDesigner.cs
- GrammarBuilderPhrase.cs
- ConfigUtil.cs
- Viewport2DVisual3D.cs
- TableColumnCollection.cs
- WorkflowRuntimeServiceElement.cs
- XmlExtensionFunction.cs
- ResourceDisplayNameAttribute.cs
- LayoutTableCell.cs
- CollectionsUtil.cs
- CacheOutputQuery.cs
- EntityContainerRelationshipSetEnd.cs
- TableLayoutSettings.cs
- TreeView.cs
- Rectangle.cs
- SqlTopReducer.cs
- TypeElement.cs
- QfeChecker.cs
- HtmlInputHidden.cs
- ScriptingWebServicesSectionGroup.cs
- Certificate.cs
- BamlLocalizabilityResolver.cs
- ListViewDeleteEventArgs.cs
- Int32CollectionValueSerializer.cs
- EdmItemCollection.cs
- PrivilegedConfigurationManager.cs
- XmlnsDictionary.cs
- SQLInt32.cs
- SessionPageStateSection.cs
- HMACSHA384.cs
- wmiprovider.cs
- SchemaImporterExtensionsSection.cs
- Propagator.Evaluator.cs
- GorillaCodec.cs
- TextLineResult.cs
- SqlFunctionAttribute.cs
- WebPartAddingEventArgs.cs
- TemplateInstanceAttribute.cs
- SoapAttributes.cs
- GeneralTransform3D.cs
- AutomationElement.cs
- RoleManagerEventArgs.cs
- Color.cs
- ViewPort3D.cs
- EntityCommandExecutionException.cs
- TextDecorationUnitValidation.cs
- ImageIndexConverter.cs
- TextTreeTextElementNode.cs
- FrameworkRichTextComposition.cs
- ConnectivityStatus.cs
- Cloud.cs
- CommandLibraryHelper.cs
- DashStyles.cs
- Stack.cs
- ToolStripRenderer.cs