Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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. //------------------------------------------------------------------------------ // // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClientTargetCollection.cs
- Literal.cs
- XmlCharCheckingWriter.cs
- QueueProcessor.cs
- XmlStringTable.cs
- FocusManager.cs
- HMACSHA384.cs
- TypeInfo.cs
- CodeIterationStatement.cs
- DataSourceXmlElementAttribute.cs
- PtsCache.cs
- SequenceNumber.cs
- ConnectionDemuxer.cs
- AdornerHitTestResult.cs
- SqlDataSourceQueryConverter.cs
- MergeExecutor.cs
- Helpers.cs
- HttpFileCollection.cs
- Page.cs
- CacheAxisQuery.cs
- SystemUdpStatistics.cs
- FrugalList.cs
- SecurityKeyIdentifierClause.cs
- WebMessageFormatHelper.cs
- ProfileProvider.cs
- ToolboxControl.cs
- ScriptingJsonSerializationSection.cs
- SimpleType.cs
- MarkupExtensionParser.cs
- CallTemplateAction.cs
- RenderingEventArgs.cs
- _IPv4Address.cs
- FolderLevelBuildProviderCollection.cs
- CroppedBitmap.cs
- ExceptionHandler.cs
- HttpApplication.cs
- ServiceMoniker.cs
- ImportContext.cs
- RijndaelManagedTransform.cs
- WebPartsSection.cs
- DeferredSelectedIndexReference.cs
- StringUtil.cs
- WebServiceErrorEvent.cs
- UserUseLicenseDictionaryLoader.cs
- ScrollViewerAutomationPeer.cs
- DirectoryInfo.cs
- DataGridTextBoxColumn.cs
- UnauthorizedWebPart.cs
- Guid.cs
- WebColorConverter.cs
- OletxVolatileEnlistment.cs
- ReflectEventDescriptor.cs
- XmlSchemaParticle.cs
- LayoutSettings.cs
- WindowsListView.cs
- RuntimeHandles.cs
- WebFaultClientMessageInspector.cs
- TrackingAnnotationCollection.cs
- PenThreadPool.cs
- ButtonBase.cs
- JoinGraph.cs
- DBConnectionString.cs
- LabelTarget.cs
- StringUtil.cs
- ArrayTypeMismatchException.cs
- XmlHierarchicalDataSourceView.cs
- CompilerLocalReference.cs
- ColorConvertedBitmap.cs
- OutputCacheSettingsSection.cs
- DataObject.cs
- ZoneMembershipCondition.cs
- XmlNamespaceMappingCollection.cs
- ImageIndexConverter.cs
- SymLanguageVendor.cs
- PropertyGrid.cs
- FixUp.cs
- TextParagraphCache.cs
- BitmapDownload.cs
- TimeManager.cs
- KeyNotFoundException.cs
- EncryptedReference.cs
- BaseAddressElementCollection.cs
- DeobfuscatingStream.cs
- MessageBox.cs
- Track.cs
- HwndStylusInputProvider.cs
- BitmapMetadataEnumerator.cs
- WebBrowserPermission.cs
- StateManagedCollection.cs
- DocumentPage.cs
- RIPEMD160Managed.cs
- UserControlFileEditor.cs
- NumericPagerField.cs
- CommentEmitter.cs
- TypefaceMap.cs
- ExpressionParser.cs
- HtmlInputImage.cs
- DynamicActionMessageFilter.cs
- RenamedEventArgs.cs
- AnchoredBlock.cs