Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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.Listlist = 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; } } } } // 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; 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.Listlist = 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; } } } } // 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
- EarlyBoundInfo.cs
- DataGridViewCellValidatingEventArgs.cs
- XmlSerializer.cs
- MetricEntry.cs
- FixedHyperLink.cs
- SchemaElementLookUpTable.cs
- FrugalMap.cs
- ProfileSection.cs
- TextWriter.cs
- VerificationAttribute.cs
- ZoneLinkButton.cs
- QilTypeChecker.cs
- ListViewCommandEventArgs.cs
- LinkedResource.cs
- NamedPipeWorkerProcess.cs
- DataServiceExpressionVisitor.cs
- ProfileInfo.cs
- RecognizeCompletedEventArgs.cs
- cookiecollection.cs
- CallSiteBinder.cs
- ObsoleteAttribute.cs
- WmfPlaceableFileHeader.cs
- HandlerBase.cs
- XmlDictionary.cs
- GeneralEndpointIdentity.cs
- DbProviderServices.cs
- LinqDataSourceDeleteEventArgs.cs
- SqlResolver.cs
- TextElement.cs
- TextSpanModifier.cs
- HtmlInputImage.cs
- NamespaceEmitter.cs
- XmlIlTypeHelper.cs
- Monitor.cs
- Type.cs
- StyleHelper.cs
- Point.cs
- SchemaRegistration.cs
- WindowsEditBoxRange.cs
- OverrideMode.cs
- CopyNodeSetAction.cs
- DependentList.cs
- securitycriticaldata.cs
- GridEntry.cs
- SqlTypeSystemProvider.cs
- XPathSingletonIterator.cs
- SamlDoNotCacheCondition.cs
- BorderSidesEditor.cs
- Serializer.cs
- SpinLock.cs
- CurrentChangingEventManager.cs
- ResourceProperty.cs
- TransformerTypeCollection.cs
- ResetableIterator.cs
- MsmqBindingFilter.cs
- CharacterString.cs
- x509utils.cs
- DataGridViewColumnCollection.cs
- LogicalExpr.cs
- MultiBindingExpression.cs
- TypeExtensionConverter.cs
- TransformPattern.cs
- ParagraphResult.cs
- ParallelTimeline.cs
- Rss20FeedFormatter.cs
- WorkflowClientDeliverMessageWrapper.cs
- WebServiceHostFactory.cs
- unsafenativemethodstextservices.cs
- DataKey.cs
- HtmlTableRowCollection.cs
- ApplicationSecurityInfo.cs
- SslStreamSecurityElement.cs
- HttpServerProtocol.cs
- FreeFormPanel.cs
- DataFormats.cs
- DefaultProxySection.cs
- CapiHashAlgorithm.cs
- PeerTransportListenAddressValidatorAttribute.cs
- Color.cs
- Int64Storage.cs
- MethodInfo.cs
- SolidColorBrush.cs
- propertyentry.cs
- CodeNamespace.cs
- _ListenerResponseStream.cs
- Control.cs
- EntityDataSourceStatementEditor.cs
- WebHttpBindingCollectionElement.cs
- Schema.cs
- WsatStrings.cs
- SafeNativeMethods.cs
- DbExpressionBuilder.cs
- LinkButton.cs
- TrackingMemoryStreamFactory.cs
- Matrix.cs
- xamlnodes.cs
- CompiledXpathExpr.cs
- Select.cs
- KeyPressEvent.cs
- RawUIStateInputReport.cs