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
- ControlEvent.cs
- CqlErrorHelper.cs
- StringWriter.cs
- Signature.cs
- OlePropertyStructs.cs
- ManagementEventWatcher.cs
- NavigationExpr.cs
- TdsEnums.cs
- DesignerVerb.cs
- RegisteredExpandoAttribute.cs
- TextCharacters.cs
- InternalControlCollection.cs
- ProviderMetadata.cs
- TemplateNameScope.cs
- BitmapCodecInfo.cs
- UndirectedGraph.cs
- EventProxy.cs
- TextRangeBase.cs
- Substitution.cs
- PersonalizationState.cs
- GenericUI.cs
- ColumnBinding.cs
- HostProtectionException.cs
- COM2ExtendedUITypeEditor.cs
- StorageMappingItemCollection.cs
- EventToken.cs
- HttpApplication.cs
- ToolStripPanel.cs
- DocumentPaginator.cs
- TraceProvider.cs
- ToolStripDropDownMenu.cs
- DataGridViewTextBoxEditingControl.cs
- CustomSignedXml.cs
- RightsManagementInformation.cs
- RequestCacheEntry.cs
- ElementInit.cs
- XmlBinaryReader.cs
- BitmapFrame.cs
- VBCodeProvider.cs
- ProxyManager.cs
- CryptographicAttribute.cs
- BitmapMetadataEnumerator.cs
- ConfigXmlComment.cs
- MarkupCompiler.cs
- CellNormalizer.cs
- ProfilePropertySettings.cs
- StyleCollectionEditor.cs
- WaitForChangedResult.cs
- ZipPackage.cs
- relpropertyhelper.cs
- httpstaticobjectscollection.cs
- FacetEnabledSchemaElement.cs
- ProgressiveCrcCalculatingStream.cs
- LookupNode.cs
- MatrixValueSerializer.cs
- ValueProviderWrapper.cs
- HttpTransportSecurity.cs
- InvalidDataException.cs
- WindowsPen.cs
- XmlSchemaExporter.cs
- AutomationEvent.cs
- TCEAdapterGenerator.cs
- ImpersonateTokenRef.cs
- UnwrappedTypesXmlSerializerManager.cs
- Pts.cs
- VisualTarget.cs
- ObjectAnimationUsingKeyFrames.cs
- SiteMapSection.cs
- VarRemapper.cs
- SqlProviderUtilities.cs
- D3DImage.cs
- WebDescriptionAttribute.cs
- HtmlWindowCollection.cs
- VersionValidator.cs
- ModelFunction.cs
- ErrorLog.cs
- CodeThrowExceptionStatement.cs
- UpdateProgress.cs
- Double.cs
- ToolStripHighContrastRenderer.cs
- Math.cs
- XmlTextWriter.cs
- RuleSettings.cs
- MemoryPressure.cs
- InkCollectionBehavior.cs
- EntityStoreSchemaFilterEntry.cs
- Vector3DValueSerializer.cs
- exports.cs
- TransactionTable.cs
- CustomLineCap.cs
- Win32SafeHandles.cs
- InputReport.cs
- _HTTPDateParse.cs
- FormParameter.cs
- AuthenticationService.cs
- RecognizedPhrase.cs
- ExpressionBuilder.cs
- FilePresentation.cs
- DiagnosticsConfigurationHandler.cs
- PrintController.cs