Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- InvalidEnumArgumentException.cs
- ServiceProviders.cs
- streamingZipPartStream.cs
- ParameterCollection.cs
- ElementUtil.cs
- RoutedUICommand.cs
- CatalogZoneBase.cs
- SqlFacetAttribute.cs
- EventEntry.cs
- StringFreezingAttribute.cs
- XmlBinaryWriter.cs
- LassoSelectionBehavior.cs
- XmlSchemaDocumentation.cs
- OutArgument.cs
- DataRelation.cs
- FieldMetadata.cs
- TextParaClient.cs
- ListViewDataItem.cs
- TraceSource.cs
- FormViewPagerRow.cs
- DescendantQuery.cs
- CompilerTypeWithParams.cs
- ResourceProviderFactory.cs
- QueryCorrelationInitializer.cs
- TraceContextEventArgs.cs
- XmlDictionaryString.cs
- Int32Animation.cs
- WarningException.cs
- HttpCookie.cs
- SSmlParser.cs
- XmlEntityReference.cs
- BuildManager.cs
- DesignTimeData.cs
- XmlQuerySequence.cs
- ProtectedConfigurationProviderCollection.cs
- EntityProviderServices.cs
- UInt64Storage.cs
- RewritingProcessor.cs
- ColorAnimationUsingKeyFrames.cs
- CounterSample.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- StylusButton.cs
- CriticalHandle.cs
- HostExecutionContextManager.cs
- ImageAttributes.cs
- MultiPageTextView.cs
- BufferedGraphicsManager.cs
- Native.cs
- InertiaTranslationBehavior.cs
- DataRecordInfo.cs
- Transactions.cs
- TdsParserSessionPool.cs
- IsolationInterop.cs
- WebPartAddingEventArgs.cs
- SqlDataSourceCache.cs
- DiscoveryClientBindingElement.cs
- QueueProcessor.cs
- PathGradientBrush.cs
- ProgressBarHighlightConverter.cs
- VerticalAlignConverter.cs
- MatrixTransform.cs
- StylusPlugin.cs
- DataGridViewCellEventArgs.cs
- Bezier.cs
- ObfuscateAssemblyAttribute.cs
- PartitionedStreamMerger.cs
- CompilerError.cs
- storepermission.cs
- InstanceDescriptor.cs
- Drawing.cs
- PopupRootAutomationPeer.cs
- MailBnfHelper.cs
- TextBoxAutomationPeer.cs
- ResourceExpressionBuilder.cs
- _ListenerResponseStream.cs
- DataList.cs
- RectAnimationBase.cs
- __Error.cs
- RequestDescription.cs
- OptimisticConcurrencyException.cs
- ByteStack.cs
- rsa.cs
- BitmapEffectRenderDataResource.cs
- Transform.cs
- RoleGroup.cs
- RowsCopiedEventArgs.cs
- EmptyStringExpandableObjectConverter.cs
- CodeDOMUtility.cs
- SplitterCancelEvent.cs
- ServiceRouteHandler.cs
- ProfileServiceManager.cs
- TemplatePropertyEntry.cs
- ComplexBindingPropertiesAttribute.cs
- QueueProcessor.cs
- OleServicesContext.cs
- HtmlShimManager.cs
- BCLDebug.cs
- DisplayMemberTemplateSelector.cs
- ToolBarTray.cs
- Highlights.cs