Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- PixelFormats.cs
- HttpListenerContext.cs
- TiffBitmapEncoder.cs
- BlurEffect.cs
- DataSourceConverter.cs
- ProxyWebPartManager.cs
- SelectionItemProviderWrapper.cs
- EditorOptionAttribute.cs
- ControlAdapter.cs
- OleDbError.cs
- ProviderConnectionPointCollection.cs
- ProtocolsConfigurationEntry.cs
- SiteMapNodeItemEventArgs.cs
- TextViewSelectionProcessor.cs
- QilLoop.cs
- Variant.cs
- HandleExceptionArgs.cs
- CollectionViewGroupInternal.cs
- ResourceDictionary.cs
- DataKey.cs
- Journal.cs
- StoreAnnotationsMap.cs
- GeometryDrawing.cs
- CompiledQueryCacheKey.cs
- DataServiceHost.cs
- SafeNativeMethodsCLR.cs
- XmlIlTypeHelper.cs
- XmlLanguageConverter.cs
- EmptyStringExpandableObjectConverter.cs
- ipaddressinformationcollection.cs
- ToolStripContentPanelDesigner.cs
- FontStyle.cs
- SqlBulkCopyColumnMapping.cs
- ProxyWebPartManager.cs
- TypeElement.cs
- CharacterBuffer.cs
- SudsCommon.cs
- ContainsRowNumberChecker.cs
- WebPartDisplayModeCancelEventArgs.cs
- BmpBitmapDecoder.cs
- HostSecurityManager.cs
- AudioFormatConverter.cs
- Attributes.cs
- SecurityTokenSerializer.cs
- MenuStrip.cs
- StorageInfo.cs
- PrefixQName.cs
- WSIdentityFaultException.cs
- WebPartEditorApplyVerb.cs
- StartUpEventArgs.cs
- Math.cs
- AuthorizationSection.cs
- FormsAuthentication.cs
- Int32.cs
- DeferredElementTreeState.cs
- RegexCaptureCollection.cs
- UnsafePeerToPeerMethods.cs
- ListenerAdaptersInstallComponent.cs
- ValidatorCompatibilityHelper.cs
- EntityCollectionChangedParams.cs
- StdValidatorsAndConverters.cs
- ClientTargetSection.cs
- ConstrainedDataObject.cs
- ScriptRegistrationManager.cs
- DataFieldConverter.cs
- DoubleIndependentAnimationStorage.cs
- QilChoice.cs
- httpapplicationstate.cs
- DictionaryContent.cs
- XmlNodeChangedEventArgs.cs
- BoolExpr.cs
- GACMembershipCondition.cs
- QueryCoreOp.cs
- StylusPointPropertyUnit.cs
- DispatcherTimer.cs
- XmlSiteMapProvider.cs
- FlowLayoutSettings.cs
- XmlNodeReader.cs
- RectAnimation.cs
- GregorianCalendarHelper.cs
- PtsHost.cs
- TextBox.cs
- HtmlAnchor.cs
- Configuration.cs
- ExecutionEngineException.cs
- ExpandCollapsePattern.cs
- COM2PropertyBuilderUITypeEditor.cs
- Pair.cs
- EdmFunctionAttribute.cs
- WebPartConnectionsConnectVerb.cs
- Claim.cs
- MsmqProcessProtocolHandler.cs
- DataTableMapping.cs
- HasCopySemanticsAttribute.cs
- HttpApplication.cs
- Constraint.cs
- VisualStyleInformation.cs
- MetafileHeaderEmf.cs
- Convert.cs
- KeyEvent.cs