Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / XmlDataSourceNodeDescriptor.cs / 1 / XmlDataSourceNodeDescriptor.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;
using System.Xml.XPath;
using AttributeCollection = System.ComponentModel.AttributeCollection;
///
///
internal sealed class XmlDataSourceNodeDescriptor : ICustomTypeDescriptor, IXPathNavigable {
private XmlNode _node;
///
/// Creates a new instance of XmlDataSourceView.
///
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 list = new System.Collections.Generic.List();
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;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedSOMLineCollection.cs
- Grant.cs
- MatrixAnimationUsingPath.cs
- ListMarkerSourceInfo.cs
- MasterPageParser.cs
- DataSourceHelper.cs
- DbMetaDataFactory.cs
- COM2AboutBoxPropertyDescriptor.cs
- WindowHideOrCloseTracker.cs
- TimeSpanStorage.cs
- InstanceDataCollectionCollection.cs
- MetaChildrenColumn.cs
- UInt16Converter.cs
- MonitoringDescriptionAttribute.cs
- CopyNamespacesAction.cs
- InvalidContentTypeException.cs
- DateRangeEvent.cs
- ProfessionalColorTable.cs
- CannotUnloadAppDomainException.cs
- TypeGeneratedEventArgs.cs
- ScrollItemPattern.cs
- BufferAllocator.cs
- TreeNodeStyle.cs
- GeneralTransform3DTo2DTo3D.cs
- ArrayElementGridEntry.cs
- PrimitiveList.cs
- CursorEditor.cs
- httpstaticobjectscollection.cs
- OleDbEnumerator.cs
- ClientSideProviderDescription.cs
- COAUTHIDENTITY.cs
- TdsParserStaticMethods.cs
- OrderedDictionaryStateHelper.cs
- ClientUtils.cs
- PinnedBufferMemoryStream.cs
- HashMembershipCondition.cs
- BaseTemplateCodeDomTreeGenerator.cs
- PropertyKey.cs
- WindowsFormsLinkLabel.cs
- WebPartVerb.cs
- codemethodreferenceexpression.cs
- Stack.cs
- Enum.cs
- _IPv6Address.cs
- PathGradientBrush.cs
- AutoSizeToolBoxItem.cs
- UserUseLicenseDictionaryLoader.cs
- IsolatedStorage.cs
- DynamicPropertyHolder.cs
- SystemIPGlobalProperties.cs
- AtomEntry.cs
- QilGenerator.cs
- HtmlTable.cs
- HtmlHistory.cs
- CustomPopupPlacement.cs
- ListMarkerLine.cs
- Command.cs
- InfoCardMetadataExchangeClient.cs
- HitTestDrawingContextWalker.cs
- TimeSpanMinutesConverter.cs
- StubHelpers.cs
- HiddenField.cs
- NullToBooleanConverter.cs
- configsystem.cs
- SplitContainer.cs
- CommunicationObjectAbortedException.cs
- Errors.cs
- DiscoveryReference.cs
- mediaeventshelper.cs
- TaskForm.cs
- TickBar.cs
- SwitchExpression.cs
- InfoCardArgumentException.cs
- DllNotFoundException.cs
- TimeSpanStorage.cs
- XPathEmptyIterator.cs
- XslNumber.cs
- SByteStorage.cs
- XmlUtil.cs
- WebPartZone.cs
- CompositeDataBoundControl.cs
- RoutedCommand.cs
- InvalidDataException.cs
- SystemIPGlobalStatistics.cs
- QueryResponse.cs
- Perspective.cs
- GPStream.cs
- UxThemeWrapper.cs
- QilXmlReader.cs
- RuntimeCompatibilityAttribute.cs
- RichTextBox.cs
- UpDownBase.cs
- VectorCollection.cs
- XmlSchemaSequence.cs
- COM2ExtendedTypeConverter.cs
- BaseCollection.cs
- EventlogProvider.cs
- SQLBytes.cs
- OleCmdHelper.cs
- CatalogPart.cs