Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- SettingsProviderCollection.cs
- ValidationResults.cs
- ExtenderProvidedPropertyAttribute.cs
- ServiceModelSecurityTokenRequirement.cs
- FileLogRecordStream.cs
- Process.cs
- CoreSwitches.cs
- PropertyItemInternal.cs
- StylusCaptureWithinProperty.cs
- DataGridBoolColumn.cs
- DispatcherTimer.cs
- newitemfactory.cs
- GlyphRunDrawing.cs
- TransformCryptoHandle.cs
- NativeMethods.cs
- XmlSchemaAnnotated.cs
- EventLogPropertySelector.cs
- SchemaTypeEmitter.cs
- TagNameToTypeMapper.cs
- DBNull.cs
- PointKeyFrameCollection.cs
- CheckBoxPopupAdapter.cs
- TitleStyle.cs
- FormViewRow.cs
- RIPEMD160.cs
- QilIterator.cs
- CircleHotSpot.cs
- DashStyles.cs
- Currency.cs
- DBSqlParserColumn.cs
- CertificateManager.cs
- OleDbStruct.cs
- BrushConverter.cs
- DefaultSettingsSection.cs
- EmptyEnumerator.cs
- SqlConnection.cs
- RegexFCD.cs
- TableParaClient.cs
- MeshGeometry3D.cs
- ProxyManager.cs
- KnownTypes.cs
- XmlSchemaSimpleContent.cs
- InputReportEventArgs.cs
- LicenseContext.cs
- AttachedAnnotationChangedEventArgs.cs
- DictionaryTraceRecord.cs
- TreeNodeBinding.cs
- ButtonAutomationPeer.cs
- HashAlgorithm.cs
- FormParameter.cs
- RtfControls.cs
- DocumentOrderComparer.cs
- SafeNativeMethods.cs
- LinkLabel.cs
- GridSplitter.cs
- WindowsRichEditRange.cs
- XamlInterfaces.cs
- safelinkcollection.cs
- DataColumnPropertyDescriptor.cs
- ExtentCqlBlock.cs
- SymbolUsageManager.cs
- PresentationSource.cs
- OracleCommandSet.cs
- SafeUserTokenHandle.cs
- SerializerDescriptor.cs
- ExpressionVisitor.cs
- CannotUnloadAppDomainException.cs
- XmlSerializerAssemblyAttribute.cs
- RichTextBoxAutomationPeer.cs
- ControlPager.cs
- PackageStore.cs
- Exceptions.cs
- FormsAuthenticationEventArgs.cs
- LayoutDump.cs
- LogWriteRestartAreaAsyncResult.cs
- DictionaryEditChange.cs
- SchemaAttDef.cs
- AppDomain.cs
- DbDataAdapter.cs
- XmlNamespaceDeclarationsAttribute.cs
- ForceCopyBuildProvider.cs
- TransformPattern.cs
- BindableAttribute.cs
- StringHelper.cs
- Verify.cs
- XmlTextReader.cs
- UseLicense.cs
- CoTaskMemHandle.cs
- CaseInsensitiveComparer.cs
- RSACryptoServiceProvider.cs
- ToolboxCategory.cs
- Route.cs
- TypefaceCollection.cs
- SmiXetterAccessMap.cs
- DbConnectionHelper.cs
- PageHandlerFactory.cs
- TreeViewImageIndexConverter.cs
- EntityDataSourceContextCreatedEventArgs.cs
- MetadataArtifactLoaderResource.cs
- ConfigurationStrings.cs