Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ValidationErrorCollection.cs
- HtmlTable.cs
- ConfigViewGenerator.cs
- DataGridViewDataConnection.cs
- ConfigurationSectionGroupCollection.cs
- LabelDesigner.cs
- AsymmetricKeyExchangeDeformatter.cs
- ConsoleKeyInfo.cs
- CompressedStack.cs
- LinkConverter.cs
- AppDomain.cs
- IResourceProvider.cs
- ClientSettingsSection.cs
- RecordConverter.cs
- ReachObjectContext.cs
- HorizontalAlignConverter.cs
- MethodAccessException.cs
- ResourceDescriptionAttribute.cs
- WizardForm.cs
- ProfileParameter.cs
- DocumentEventArgs.cs
- Int32EqualityComparer.cs
- ReflectionUtil.cs
- RichTextBoxContextMenu.cs
- PublisherIdentityPermission.cs
- ArrayElementGridEntry.cs
- DrawingCollection.cs
- PartEditor.cs
- Switch.cs
- ThaiBuddhistCalendar.cs
- RoutedPropertyChangedEventArgs.cs
- NavigationWindowAutomationPeer.cs
- LoginStatusDesigner.cs
- DefaultValueAttribute.cs
- TripleDESCryptoServiceProvider.cs
- AuthenticationService.cs
- FormsAuthenticationUser.cs
- XsltException.cs
- RelationshipEntry.cs
- QilUnary.cs
- Menu.cs
- ControlCachePolicy.cs
- ThicknessAnimationBase.cs
- RC2.cs
- EntityConnectionStringBuilder.cs
- PointHitTestParameters.cs
- _NativeSSPI.cs
- UnlockInstanceAsyncResult.cs
- TraceShell.cs
- WindowsUpDown.cs
- Point3DCollectionConverter.cs
- TextRangeEditTables.cs
- ResolvedKeyFrameEntry.cs
- SerializationSectionGroup.cs
- TriState.cs
- ClientData.cs
- ConsumerConnectionPointCollection.cs
- ArgumentValidation.cs
- SspiSecurityToken.cs
- XmlArrayAttribute.cs
- AliasedSlot.cs
- AlgoModule.cs
- PointAnimationUsingPath.cs
- ExtensionSimplifierMarkupObject.cs
- NavigationWindowAutomationPeer.cs
- DES.cs
- TransformValueSerializer.cs
- ComPersistableTypeElementCollection.cs
- NameValueConfigurationElement.cs
- XmlMapping.cs
- ProofTokenCryptoHandle.cs
- RuleSettings.cs
- PasswordTextNavigator.cs
- CheckableControlBaseAdapter.cs
- XmlTextReader.cs
- FilterElement.cs
- DrawingDrawingContext.cs
- FontUnit.cs
- PresentationSource.cs
- ReflectionPermission.cs
- UnsafeNativeMethods.cs
- StringBuilder.cs
- WebBrowser.cs
- FrameworkTemplate.cs
- HighContrastHelper.cs
- SuppressMessageAttribute.cs
- DbTransaction.cs
- ADMembershipProvider.cs
- SizeFConverter.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- GAC.cs
- IdentitySection.cs
- CallbackValidator.cs
- InvalidDocumentContentsException.cs
- SqlNodeAnnotation.cs
- BrowserCapabilitiesFactory.cs
- WebPartTransformerCollection.cs
- WebPartZoneCollection.cs
- DirectoryNotFoundException.cs
- TableLayoutRowStyleCollection.cs