You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,58 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="XmlHierarchicalEnumerable.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing.Design;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Xml;
|
||||
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// An enumerable representing a single level of an XmlHierarchicalDataSourceView.
|
||||
/// </devdoc>
|
||||
internal sealed class XmlHierarchicalEnumerable : IHierarchicalEnumerable {
|
||||
|
||||
private string _path;
|
||||
private XmlNodeList _nodeList;
|
||||
|
||||
/// <devdoc>
|
||||
/// Creates a new instance of XmlHierarchicalEnumerable.
|
||||
/// </devdoc>
|
||||
internal XmlHierarchicalEnumerable(XmlNodeList nodeList) {
|
||||
_nodeList = nodeList;
|
||||
}
|
||||
|
||||
internal string Path {
|
||||
get {
|
||||
return _path;
|
||||
}
|
||||
set {
|
||||
_path = value;
|
||||
}
|
||||
}
|
||||
|
||||
IEnumerator IEnumerable.GetEnumerator() {
|
||||
foreach (XmlNode node in _nodeList) {
|
||||
if (node.NodeType == XmlNodeType.Element) {
|
||||
yield return new XmlHierarchyData(this, node);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
IHierarchyData IHierarchicalEnumerable.GetHierarchyData(object enumeratedItem) {
|
||||
return (IHierarchyData)enumeratedItem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user