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
- TypeConverterAttribute.cs
- Claim.cs
- FlatButtonAppearance.cs
- TransportSecurityProtocolFactory.cs
- BasePattern.cs
- InternalTypeHelper.cs
- _IPv4Address.cs
- ComponentTray.cs
- PresentationTraceSources.cs
- EventPrivateKey.cs
- DataMisalignedException.cs
- DbMetaDataFactory.cs
- XmlSiteMapProvider.cs
- Point3DIndependentAnimationStorage.cs
- LinearKeyFrames.cs
- LayoutEditorPart.cs
- ServiceOperationHelpers.cs
- EntityType.cs
- WaitHandleCannotBeOpenedException.cs
- CodeTypeReferenceExpression.cs
- XamlTemplateSerializer.cs
- ByteStorage.cs
- XamlDesignerSerializationManager.cs
- DeclarativeConditionsCollection.cs
- DbRetry.cs
- IndentedWriter.cs
- LineGeometry.cs
- SynchronizedDispatch.cs
- CodePropertyReferenceExpression.cs
- ImageListImageEditor.cs
- InputMethod.cs
- ConcurrentStack.cs
- Utility.cs
- GridViewUpdatedEventArgs.cs
- IssuanceLicense.cs
- Stopwatch.cs
- EpmSyndicationContentSerializer.cs
- TimerElapsedEvenArgs.cs
- DataStorage.cs
- SecurityElement.cs
- ProtectedConfiguration.cs
- SpellerHighlightLayer.cs
- ConnectionsZone.cs
- OdbcHandle.cs
- MenuEventArgs.cs
- EndpointReference.cs
- CrossContextChannel.cs
- InputScope.cs
- RenderTargetBitmap.cs
- RequestTimeoutManager.cs
- NetworkInterface.cs
- NameTable.cs
- ScriptResourceMapping.cs
- XmlDataDocument.cs
- Environment.cs
- AutomationFocusChangedEventArgs.cs
- AssemblyHash.cs
- PassportPrincipal.cs
- XmlProcessingInstruction.cs
- StrokeNodeData.cs
- ToolStripItem.cs
- InvokeMethodActivity.cs
- CompilerWrapper.cs
- ChtmlMobileTextWriter.cs
- ComponentEditorPage.cs
- OpCellTreeNode.cs
- EditorAttribute.cs
- PersonalizablePropertyEntry.cs
- NullRuntimeConfig.cs
- IUnknownConstantAttribute.cs
- DoubleCollectionValueSerializer.cs
- Bits.cs
- UDPClient.cs
- CatalogZoneBase.cs
- SerTrace.cs
- SchemaElement.cs
- Membership.cs
- ToolTipAutomationPeer.cs
- DataTableReaderListener.cs
- MexHttpsBindingElement.cs
- DateTimeValueSerializerContext.cs
- MethodBuilder.cs
- Vector3DIndependentAnimationStorage.cs
- BoundColumn.cs
- CollectionConverter.cs
- Latin1Encoding.cs
- MeshGeometry3D.cs
- StateMachineWorkflow.cs
- DataViewManagerListItemTypeDescriptor.cs
- TableAdapterManagerNameHandler.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- Scene3D.cs
- CredentialCache.cs
- AutomationTextAttribute.cs
- DataPagerCommandEventArgs.cs
- StreamAsIStream.cs
- ExpiredSecurityTokenException.cs
- DefaultWorkflowSchedulerService.cs
- SqlUserDefinedTypeAttribute.cs
- SafeTimerHandle.cs