Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / XmlDataSourceNodeDescriptor.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListView.cs
- Visual3D.cs
- SystemColorTracker.cs
- Convert.cs
- WebColorConverter.cs
- ActivityUtilities.cs
- ProgressBar.cs
- InputChannelAcceptor.cs
- Int32Rect.cs
- FormatException.cs
- HtmlLiteralTextAdapter.cs
- ResourceManager.cs
- XmlReader.cs
- ShapingWorkspace.cs
- X509IssuerSerialKeyIdentifierClause.cs
- DataMemberFieldConverter.cs
- ResponseBodyWriter.cs
- ResourceDisplayNameAttribute.cs
- HandlerBase.cs
- TCEAdapterGenerator.cs
- XmlElementAttribute.cs
- FileDialogCustomPlacesCollection.cs
- RowUpdatedEventArgs.cs
- AssociatedControlConverter.cs
- EventListener.cs
- SmiTypedGetterSetter.cs
- WebPartVerbsEventArgs.cs
- ExpressionBuilderCollection.cs
- ArglessEventHandlerProxy.cs
- Rethrow.cs
- WindowsFont.cs
- ServiceKnownTypeAttribute.cs
- ActivityCodeDomSerializationManager.cs
- Calendar.cs
- diagnosticsswitches.cs
- MouseOverProperty.cs
- DbExpressionVisitor.cs
- WorkflowInstance.cs
- Timer.cs
- PropertyIDSet.cs
- ErrorLog.cs
- PageScaling.cs
- DefaultBinder.cs
- SmtpException.cs
- ConfigurationManagerHelperFactory.cs
- BasicBrowserDialog.designer.cs
- PointAnimationUsingKeyFrames.cs
- SrgsRule.cs
- SelectionManager.cs
- SchemaNotation.cs
- TransformedBitmap.cs
- FrameworkElementAutomationPeer.cs
- HttpPostedFileWrapper.cs
- SoapInteropTypes.cs
- HGlobalSafeHandle.cs
- RegexInterpreter.cs
- OleDbDataReader.cs
- OperationContractGenerationContext.cs
- AlternationConverter.cs
- StylusShape.cs
- SmiEventSink_DeferedProcessing.cs
- CuspData.cs
- Control.cs
- XmlSchemaComplexContentRestriction.cs
- ManagementPath.cs
- InternalConfigHost.cs
- ResourceProperty.cs
- XmlUnspecifiedAttribute.cs
- ProcessMessagesAsyncResult.cs
- WebEvents.cs
- MailWebEventProvider.cs
- FreeFormDesigner.cs
- SymbolEqualComparer.cs
- StorageMappingFragment.cs
- EmbeddedObject.cs
- ContentHostHelper.cs
- Transform3D.cs
- RawStylusActions.cs
- _HeaderInfo.cs
- SqlDataSourceCache.cs
- Char.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- InfoCardSymmetricAlgorithm.cs
- DoWhile.cs
- XmlConvert.cs
- MouseGesture.cs
- JsonWriter.cs
- ResolvedKeyFrameEntry.cs
- CodeTypeDeclaration.cs
- RankException.cs
- Matrix.cs
- ReadOnlyDictionary.cs
- DataBindingHandlerAttribute.cs
- TrackingAnnotationCollection.cs
- KeyManager.cs
- ActionFrame.cs
- WebPartMenu.cs
- StoryFragments.cs
- QilFunction.cs
- PermissionSetEnumerator.cs