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,163 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="XmlDataSourceNodeDescriptor.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.Security.Permissions;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.Util;
|
||||
using System.Xml;
|
||||
using System.Xml.XPath;
|
||||
|
||||
using AttributeCollection = System.ComponentModel.AttributeCollection;
|
||||
|
||||
/// <devdoc>
|
||||
/// </devdoc>
|
||||
internal sealed class XmlDataSourceNodeDescriptor : ICustomTypeDescriptor, IXPathNavigable {
|
||||
|
||||
private XmlNode _node;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// Creates a new instance of XmlDataSourceView.
|
||||
/// </devdoc>
|
||||
public XmlDataSourceNodeDescriptor(XmlNode node) {
|
||||
Debug.Assert(node != null, "Did not expect null node");
|
||||
_node = node;
|
||||
}
|
||||
|
||||
AttributeCollection ICustomTypeDescriptor.GetAttributes() {
|
||||
return AttributeCollection.Empty;
|
||||
}
|
||||
|
||||
string ICustomTypeDescriptor.GetClassName() {
|
||||
return GetType().Name;
|
||||
}
|
||||
|
||||
string ICustomTypeDescriptor.GetComponentName() {
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
TypeConverter ICustomTypeDescriptor.GetConverter() {
|
||||
return null;
|
||||
}
|
||||
|
||||
EventDescriptor ICustomTypeDescriptor.GetDefaultEvent() {
|
||||
return null;
|
||||
}
|
||||
|
||||
PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty() {
|
||||
return null;
|
||||
}
|
||||
|
||||
object ICustomTypeDescriptor.GetEditor(Type editorBaseType) {
|
||||
return null;
|
||||
}
|
||||
|
||||
EventDescriptorCollection ICustomTypeDescriptor.GetEvents() {
|
||||
return null;
|
||||
}
|
||||
|
||||
EventDescriptorCollection ICustomTypeDescriptor.GetEvents(Attribute[] attrs) {
|
||||
return null;
|
||||
}
|
||||
|
||||
PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties() {
|
||||
return ((ICustomTypeDescriptor)this).GetProperties(null);
|
||||
}
|
||||
|
||||
PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties(Attribute[] attrFilter) {
|
||||
System.Collections.Generic.List<PropertyDescriptor> list = new System.Collections.Generic.List<PropertyDescriptor>();
|
||||
XmlAttributeCollection attrs = _node.Attributes;
|
||||
if (attrs != null) {
|
||||
for (int i = 0; i < attrs.Count; i++) {
|
||||
list.Add(new XmlDataSourcePropertyDescriptor(attrs[i].Name));
|
||||
}
|
||||
}
|
||||
|
||||
return new PropertyDescriptorCollection(list.ToArray());
|
||||
}
|
||||
|
||||
object ICustomTypeDescriptor.GetPropertyOwner(PropertyDescriptor pd) {
|
||||
if (pd is XmlDataSourcePropertyDescriptor) {
|
||||
return this;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
XPathNavigator IXPathNavigable.CreateNavigator() {
|
||||
return _node.CreateNavigator();
|
||||
}
|
||||
|
||||
|
||||
private class XmlDataSourcePropertyDescriptor : PropertyDescriptor {
|
||||
private string _name;
|
||||
|
||||
public XmlDataSourcePropertyDescriptor(string name) : base(name, null) {
|
||||
_name = name;
|
||||
}
|
||||
|
||||
|
||||
public override Type ComponentType {
|
||||
get {
|
||||
return typeof(XmlDataSourceNodeDescriptor);
|
||||
}
|
||||
}
|
||||
|
||||
public override bool IsReadOnly {
|
||||
get {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public override Type PropertyType {
|
||||
get {
|
||||
return typeof(string);
|
||||
}
|
||||
}
|
||||
|
||||
public override bool CanResetValue(object o) {
|
||||
return false;
|
||||
}
|
||||
|
||||
public override object GetValue(object o) {
|
||||
XmlDataSourceNodeDescriptor node = o as XmlDataSourceNodeDescriptor;
|
||||
if (node != null) {
|
||||
XmlAttributeCollection attrs = node._node.Attributes;
|
||||
|
||||
if (attrs != null) {
|
||||
XmlAttribute attr = attrs[_name];
|
||||
if (attr != null) {
|
||||
return attr.Value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return String.Empty;
|
||||
}
|
||||
|
||||
public override void ResetValue(object o) {
|
||||
}
|
||||
|
||||
public override void SetValue(object o, object value) {
|
||||
}
|
||||
|
||||
public override bool ShouldSerializeValue(object o) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user