Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ //// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProcessHostServerConfig.cs
- BufferedMessageData.cs
- MetabaseServerConfig.cs
- SoapSchemaExporter.cs
- FamilyMap.cs
- SchemaTableColumn.cs
- DelimitedListTraceListener.cs
- ConfigurationStrings.cs
- DbExpressionBuilder.cs
- TransformConverter.cs
- SessionSwitchEventArgs.cs
- WpfGeneratedKnownProperties.cs
- CharEntityEncoderFallback.cs
- SizeConverter.cs
- CodeTypeParameter.cs
- X509InitiatorCertificateServiceElement.cs
- DelegateSerializationHolder.cs
- PropertyMapper.cs
- DataBindingExpressionBuilder.cs
- BinaryFormatter.cs
- BaseResourcesBuildProvider.cs
- JournalEntryStack.cs
- ToolStripControlHost.cs
- WebPartConnectionsCancelEventArgs.cs
- PanelStyle.cs
- printdlgexmarshaler.cs
- FlowDocumentReaderAutomationPeer.cs
- LogicalExpressionEditor.cs
- WhitespaceRuleLookup.cs
- ToolStripDropDownMenu.cs
- DateBoldEvent.cs
- xmlfixedPageInfo.cs
- SQLCharsStorage.cs
- Canvas.cs
- StreamInfo.cs
- StringStorage.cs
- CheckBoxRenderer.cs
- PropertyPathWorker.cs
- Cursor.cs
- NamedPermissionSet.cs
- TextViewSelectionProcessor.cs
- ScrollChrome.cs
- DriveInfo.cs
- OracleRowUpdatingEventArgs.cs
- RemotingServices.cs
- PropertyValueChangedEvent.cs
- QilScopedVisitor.cs
- AnnotationAdorner.cs
- QuadraticBezierSegment.cs
- ToolStripPanelSelectionGlyph.cs
- ContextStaticAttribute.cs
- ComponentDispatcher.cs
- RenamedEventArgs.cs
- SchemaObjectWriter.cs
- OleServicesContext.cs
- StreamHelper.cs
- EntityDataSourceContainerNameItem.cs
- MemberRelationshipService.cs
- LiteralLink.cs
- SessionStateModule.cs
- XPathPatternParser.cs
- PtsContext.cs
- MessageDecoder.cs
- ToggleButton.cs
- CompModHelpers.cs
- ContentElement.cs
- IUnknownConstantAttribute.cs
- DataGridToolTip.cs
- ButtonColumn.cs
- Events.cs
- ExtractCollection.cs
- UInt64Converter.cs
- SecureStringHasher.cs
- StatusBarItemAutomationPeer.cs
- UrlMapping.cs
- RuleSettingsCollection.cs
- TableLayoutCellPaintEventArgs.cs
- MetaTableHelper.cs
- TreeViewEvent.cs
- TableItemProviderWrapper.cs
- TableLayout.cs
- XNodeNavigator.cs
- EditorZone.cs
- CodeTypeMember.cs
- SspiWrapper.cs
- ScriptReferenceBase.cs
- PerformanceCounterCategory.cs
- InertiaTranslationBehavior.cs
- XmlDataProvider.cs
- ProviderSettings.cs
- DataStreamFromComStream.cs
- SQLInt32Storage.cs
- HtmlUtf8RawTextWriter.cs
- DateTimeSerializationSection.cs
- ActivityContext.cs
- CustomDictionarySources.cs
- EventDescriptor.cs
- TreeNode.cs
- FormatConvertedBitmap.cs
- DataControlExtensions.cs