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
- LayoutTableCell.cs
- login.cs
- DataRelationCollection.cs
- Pen.cs
- SrgsNameValueTag.cs
- BrowserInteropHelper.cs
- ConnectivityStatus.cs
- PersonalizationEntry.cs
- ToolStripRenderEventArgs.cs
- ControlParameter.cs
- LabelEditEvent.cs
- Expression.cs
- HiddenFieldPageStatePersister.cs
- DiscardableAttribute.cs
- AudioDeviceOut.cs
- RoleManagerModule.cs
- TabItemWrapperAutomationPeer.cs
- WriteLineDesigner.xaml.cs
- QilLoop.cs
- BinaryFormatterWriter.cs
- CellRelation.cs
- CodeRemoveEventStatement.cs
- ControlParameter.cs
- TypedAsyncResult.cs
- ISAPIApplicationHost.cs
- RightNameExpirationInfoPair.cs
- LinkedResource.cs
- ClientUrlResolverWrapper.cs
- EntityParameter.cs
- WeakEventManager.cs
- ProjectionQueryOptionExpression.cs
- HttpListenerResponse.cs
- BaseComponentEditor.cs
- OperandQuery.cs
- LowerCaseStringConverter.cs
- BitmapEffectCollection.cs
- SchemaNamespaceManager.cs
- RtfControls.cs
- FormatPage.cs
- TypeUnloadedException.cs
- ScaleTransform3D.cs
- XmlWriterSettings.cs
- ToolStripLabel.cs
- ColorTransform.cs
- CapabilitiesUse.cs
- BamlResourceContent.cs
- InputProcessorProfilesLoader.cs
- Signature.cs
- DataSourceSelectArguments.cs
- StructuralType.cs
- ProgressiveCrcCalculatingStream.cs
- ListBox.cs
- CacheChildrenQuery.cs
- XamlHostingSection.cs
- StructuralComparisons.cs
- TabControlDesigner.cs
- DBCommand.cs
- TypeConverterMarkupExtension.cs
- ArgumentReference.cs
- BinaryEditor.cs
- ToolStripProgressBar.cs
- WebPartHelpVerb.cs
- PrintDialog.cs
- CommandPlan.cs
- XmlDigitalSignatureProcessor.cs
- ArrayHelper.cs
- CopyOfAction.cs
- FixedTextContainer.cs
- XmlToDatasetMap.cs
- TimeStampChecker.cs
- SingleKeyFrameCollection.cs
- ComplexLine.cs
- DataGridViewSelectedCellCollection.cs
- Attributes.cs
- MetadataArtifactLoaderResource.cs
- SerializationFieldInfo.cs
- XhtmlConformanceSection.cs
- AspCompat.cs
- TypeToStringValueConverter.cs
- CodeTypeReferenceCollection.cs
- CacheEntry.cs
- EncoderFallback.cs
- clipboard.cs
- PanelStyle.cs
- CheckBoxBaseAdapter.cs
- RecognizedPhrase.cs
- AssemblyInfo.cs
- Model3D.cs
- CodeActivity.cs
- StoryFragments.cs
- Int32RectConverter.cs
- TrackBarRenderer.cs
- EventHandlersStore.cs
- FailedToStartupUIException.cs
- RSAPKCS1SignatureDeformatter.cs
- CommonDialog.cs
- OracleException.cs
- PageParserFilter.cs
- XmlUtil.cs
- PropertyGrid.cs