Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- Button.cs
- BrowserCapabilitiesFactoryBase.cs
- DesignerSerializationVisibilityAttribute.cs
- DataGridViewAddColumnDialog.cs
- UInt16Converter.cs
- ToolStripSplitButton.cs
- WinFormsComponentEditor.cs
- HostedHttpContext.cs
- FunctionNode.cs
- CommandDevice.cs
- StyleSheetDesigner.cs
- PerformanceCounters.cs
- FormViewCommandEventArgs.cs
- DataViewSettingCollection.cs
- NavigationFailedEventArgs.cs
- WorkflowPrinting.cs
- OrderByBuilder.cs
- XPathConvert.cs
- PathFigure.cs
- BevelBitmapEffect.cs
- RouteParser.cs
- ClientTargetCollection.cs
- TextTreeText.cs
- DragStartedEventArgs.cs
- StylusDevice.cs
- Size3D.cs
- DebuggerAttributes.cs
- BoundField.cs
- StaticExtensionConverter.cs
- JumpItem.cs
- AsyncParams.cs
- CompModSwitches.cs
- DiagnosticsConfiguration.cs
- FixedSOMGroup.cs
- LineGeometry.cs
- PeerToPeerException.cs
- SqlBinder.cs
- NativeMethods.cs
- RtfToXamlReader.cs
- ResourceReader.cs
- AppDomainInfo.cs
- BitmapInitialize.cs
- CachingHintValidation.cs
- BufferedWebEventProvider.cs
- SRGSCompiler.cs
- documentsequencetextpointer.cs
- Point3DAnimationUsingKeyFrames.cs
- Int64AnimationUsingKeyFrames.cs
- TaskHelper.cs
- PeerResolverSettings.cs
- AesManaged.cs
- LicenseContext.cs
- GetPageCompletedEventArgs.cs
- FrameworkElementFactory.cs
- MenuTracker.cs
- ShaderEffect.cs
- SoapFault.cs
- CodeDefaultValueExpression.cs
- ComponentConverter.cs
- ExpressionNode.cs
- DeclarativeCatalogPart.cs
- DataGridViewImageCell.cs
- TextEditorTables.cs
- EncodingInfo.cs
- KeyConverter.cs
- CellRelation.cs
- ProviderMetadataCachedInformation.cs
- UnitySerializationHolder.cs
- ItemList.cs
- DependencyPropertyKey.cs
- PreviewPrintController.cs
- sqlpipe.cs
- CompressEmulationStream.cs
- HitTestFilterBehavior.cs
- StorageRoot.cs
- MergePropertyDescriptor.cs
- DataObjectEventArgs.cs
- FileNotFoundException.cs
- HtmlTableRow.cs
- Binding.cs
- DoWorkEventArgs.cs
- UnknownMessageReceivedEventArgs.cs
- QueryCursorEventArgs.cs
- PackWebRequestFactory.cs
- ActiveXMessageFormatter.cs
- LocalFileSettingsProvider.cs
- MetadataItemCollectionFactory.cs
- NativeMethods.cs
- ClientTargetSection.cs
- HtmlInputRadioButton.cs
- TransformerConfigurationWizardBase.cs
- Error.cs
- WhitespaceRuleLookup.cs
- MouseBinding.cs
- TableLayoutStyleCollection.cs
- PositiveTimeSpanValidatorAttribute.cs
- WindowsStartMenu.cs
- RectAnimationBase.cs
- ResourceDisplayNameAttribute.cs
- MenuItemStyleCollection.cs