Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / XmlHierarchicalDataSourceView.cs / 1 / XmlHierarchicalDataSourceView.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing.Design; using System.Security.Permissions; using System.Text; using System.Web; using System.Web.UI; using System.Web.Util; using System.Xml; ////// Represents a hierarchical view of an XmlDataSource. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class XmlHierarchicalDataSourceView : HierarchicalDataSourceView { private XmlDataSource _owner; private string _viewPath; ////// Creates a new instance of XmlHierarchicalDataSourceView. /// internal XmlHierarchicalDataSourceView(XmlDataSource owner, string viewPath) { Debug.Assert(owner != null); _owner = owner; _viewPath = viewPath; } public override IHierarchicalEnumerable Select() { XmlNode root = _owner.GetXmlDocument(); XmlNodeList nodes = null; if (!String.IsNullOrEmpty(_viewPath)) { XmlNode node = root.SelectSingleNode(_viewPath); if (node != null) { nodes = node.ChildNodes; } } else { if (_owner.XPath.Length > 0) { nodes = root.SelectNodes(_owner.XPath); } else { nodes = root.ChildNodes; } } return new XmlHierarchicalEnumerable(nodes); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing.Design; using System.Security.Permissions; using System.Text; using System.Web; using System.Web.UI; using System.Web.Util; using System.Xml; ////// Represents a hierarchical view of an XmlDataSource. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class XmlHierarchicalDataSourceView : HierarchicalDataSourceView { private XmlDataSource _owner; private string _viewPath; ////// Creates a new instance of XmlHierarchicalDataSourceView. /// internal XmlHierarchicalDataSourceView(XmlDataSource owner, string viewPath) { Debug.Assert(owner != null); _owner = owner; _viewPath = viewPath; } public override IHierarchicalEnumerable Select() { XmlNode root = _owner.GetXmlDocument(); XmlNodeList nodes = null; if (!String.IsNullOrEmpty(_viewPath)) { XmlNode node = root.SelectSingleNode(_viewPath); if (node != null) { nodes = node.ChildNodes; } } else { if (_owner.XPath.Length > 0) { nodes = root.SelectNodes(_owner.XPath); } else { nodes = root.ChildNodes; } } return new XmlHierarchicalEnumerable(nodes); } } } // 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
- SchemaAttDef.cs
- AuthenticationService.cs
- WebPartZoneBase.cs
- ControlCollection.cs
- PartialTrustVisibleAssemblyCollection.cs
- ExpressionEditorAttribute.cs
- XmlILAnnotation.cs
- RoleManagerSection.cs
- LineVisual.cs
- ClientTargetSection.cs
- SystemIPInterfaceProperties.cs
- DynamicActivityXamlReader.cs
- FormatVersion.cs
- AssemblyAttributes.cs
- validationstate.cs
- ControlAdapter.cs
- ExpressionParser.cs
- JournalNavigationScope.cs
- SchemaElementLookUpTableEnumerator.cs
- Bitmap.cs
- CloudCollection.cs
- ComplusTypeValidator.cs
- FileVersionInfo.cs
- Console.cs
- GcHandle.cs
- UpdateTranslator.cs
- InfoCardSymmetricCrypto.cs
- DecimalConstantAttribute.cs
- AudioFormatConverter.cs
- TimeSpanOrInfiniteConverter.cs
- MaterialGroup.cs
- AVElementHelper.cs
- DbConnectionPoolGroup.cs
- MsmqIntegrationValidationBehavior.cs
- ImageCodecInfoPrivate.cs
- ContextMenuStrip.cs
- PrintPageEvent.cs
- SafeEventLogReadHandle.cs
- PlacementWorkspace.cs
- StylusButtonEventArgs.cs
- Rectangle.cs
- WebPartTransformer.cs
- WSDualHttpBinding.cs
- SiteMapNodeItemEventArgs.cs
- __FastResourceComparer.cs
- DataGridCaption.cs
- RSAPKCS1SignatureDeformatter.cs
- ListenerAdapter.cs
- MappingModelBuildProvider.cs
- Rotation3D.cs
- FrameAutomationPeer.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- RadioButton.cs
- PartialCachingControl.cs
- ValidatorCollection.cs
- RegistryKey.cs
- PrimitiveType.cs
- AuthenticationSection.cs
- StructureChangedEventArgs.cs
- SimpleHandlerFactory.cs
- ThrowHelper.cs
- TemplateBamlTreeBuilder.cs
- Viewport3DAutomationPeer.cs
- ExpressionBuilder.cs
- RewritingValidator.cs
- TaskExceptionHolder.cs
- CodeThrowExceptionStatement.cs
- RepeaterItemEventArgs.cs
- VirtualDirectoryMapping.cs
- SymLanguageVendor.cs
- FileLogRecordStream.cs
- WindowsTreeView.cs
- PipeException.cs
- AppDomainFactory.cs
- Encoding.cs
- LinqDataSourceInsertEventArgs.cs
- SecurityBindingElement.cs
- OwnerDrawPropertyBag.cs
- WizardStepBase.cs
- recordstate.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- XmlUTF8TextWriter.cs
- XmlAutoDetectWriter.cs
- filewebrequest.cs
- RichTextBoxAutomationPeer.cs
- QueryStringHandler.cs
- EllipseGeometry.cs
- FieldTemplateUserControl.cs
- NonParentingControl.cs
- LockCookie.cs
- ParseElement.cs
- PlaceHolder.cs
- SvcMapFile.cs
- WindowsListViewGroupHelper.cs
- dbdatarecord.cs
- BinaryParser.cs
- CopyNodeSetAction.cs
- DataServiceQueryException.cs
- UIElementCollection.cs
- QilXmlWriter.cs