Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebParts / PersonalizableTypeEntry.cs / 1 / PersonalizableTypeEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Collections.Specialized; using System.Reflection; ////// Used to represent a type that has personalizable properties /// and cache information about it. /// internal sealed class PersonalizableTypeEntry { private Type _type; private IDictionary _propertyEntries; private PropertyInfo[] _propertyInfos; public PersonalizableTypeEntry(Type type) { _type = type; InitializePersonalizableProperties(); } public IDictionary PropertyEntries { get { return _propertyEntries; } } public ICollection PropertyInfos { get { if (_propertyInfos == null) { PropertyInfo[] propertyInfos = new PropertyInfo[_propertyEntries.Count]; int i = 0; foreach (PersonalizablePropertyEntry entry in _propertyEntries.Values) { propertyInfos[i] = entry.PropertyInfo; i++; } // Set field after the values have been computed, so field will not be cached // if an exception is thrown. _propertyInfos = propertyInfos; } return _propertyInfos; } } private void InitializePersonalizableProperties() { _propertyEntries = new HybridDictionary(/* caseInsensitive */ false); // Get all public and non-public instance properties, including those declared on // base types. BindingFlags flags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic; PropertyInfo[] props = _type.GetProperties(flags); // Sorts PropertyInfos according to their DeclaringType. Base types appear before derived types. Array.Sort(props, new DeclaringTypeComparer()); // For each PropertyInfo, add it to the dictionary if it is personalizable, else remove // it from the dictionary. We need to remove it from the dictionary, in case the base // type declared a valid personalizable property of the same name (VSWhidbey 237437). if ((props != null) && (props.Length != 0)) { for (int i = 0; i < props.Length; i++) { PropertyInfo pi = props[i]; string name = pi.Name; // Get the PersonalizableAttribute (and include any inherited metadata) PersonalizableAttribute pa = Attribute.GetCustomAttribute(pi, PersonalizableAttribute.PersonalizableAttributeType, true) as PersonalizableAttribute; // If the property is not personalizable, remove it from the dictionary if (pa == null || !pa.IsPersonalizable) { _propertyEntries.Remove(name); continue; } // If the property has parameters, or does not have a public get or set // accessor, throw an exception. ParameterInfo[] paramList = pi.GetIndexParameters(); if ((paramList != null && paramList.Length > 0) || pi.GetGetMethod() == null || pi.GetSetMethod() == null) { throw new HttpException(SR.GetString( SR.PersonalizableTypeEntry_InvalidProperty, name, _type.FullName)); } // Add the property to the dictionary _propertyEntries[name] = new PersonalizablePropertyEntry(pi, pa); } } } // Sorts PropertyInfos according to their DeclaringType. Base types appear before derived types. private sealed class DeclaringTypeComparer : IComparer { public int Compare(Object x, Object y) { Type declaringTypeX = ((PropertyInfo)x).DeclaringType; Type declaringTypeY = ((PropertyInfo)y).DeclaringType; if (declaringTypeX == declaringTypeY) { return 0; } else if (declaringTypeX.IsSubclassOf(declaringTypeY)) { return 1; } else { return -1; } } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SparseMemoryStream.cs
- DockProviderWrapper.cs
- LinqDataSourceUpdateEventArgs.cs
- ClusterRegistryConfigurationProvider.cs
- SqlProviderManifest.cs
- SolidColorBrush.cs
- LinearKeyFrames.cs
- FileDialogPermission.cs
- ObjectTag.cs
- MediaEntryAttribute.cs
- QilStrConcatenator.cs
- MdImport.cs
- DataControlImageButton.cs
- PolygonHotSpot.cs
- ValidatorCollection.cs
- TextFormatterHost.cs
- ScaleTransform3D.cs
- UnionCodeGroup.cs
- TaiwanCalendar.cs
- BindingOperations.cs
- DataPointer.cs
- IconHelper.cs
- XmlReader.cs
- EndOfStreamException.cs
- httpapplicationstate.cs
- EmptyElement.cs
- DataGridViewCellParsingEventArgs.cs
- MimeTypePropertyAttribute.cs
- PackWebRequest.cs
- ThicknessAnimationUsingKeyFrames.cs
- TextEditorThreadLocalStore.cs
- TextRange.cs
- SurrogateDataContract.cs
- DBSchemaTable.cs
- AttachedAnnotation.cs
- AnnotationHighlightLayer.cs
- PointAnimationUsingKeyFrames.cs
- DescendantQuery.cs
- ProviderCommandInfoUtils.cs
- ResolveInfo.cs
- AppDomainManager.cs
- SqlSelectStatement.cs
- Logging.cs
- FileDataSourceCache.cs
- PersonalizationProviderHelper.cs
- QuotedPairReader.cs
- InputEventArgs.cs
- CalendarData.cs
- RbTree.cs
- SecurityDocument.cs
- compensatingcollection.cs
- PropertyItem.cs
- EntityProviderFactory.cs
- lengthconverter.cs
- DesignerActionPanel.cs
- Section.cs
- WsatEtwTraceListener.cs
- ConsumerConnectionPointCollection.cs
- DesignSurfaceServiceContainer.cs
- PartialList.cs
- QueryActivatableWorkflowsCommand.cs
- ScrollBar.cs
- WebRequest.cs
- XmlDataSourceNodeDescriptor.cs
- DataList.cs
- UnsafeNativeMethods.cs
- XmlSignatureProperties.cs
- HashHelper.cs
- NameNode.cs
- CapiSafeHandles.cs
- Mapping.cs
- Char.cs
- NavigationPropertyEmitter.cs
- ApplicationProxyInternal.cs
- ToolStripSystemRenderer.cs
- ContextDataSource.cs
- RijndaelManagedTransform.cs
- HttpCookieCollection.cs
- CompilationSection.cs
- VersionPair.cs
- URLEditor.cs
- PropertyPathWorker.cs
- EntityProviderFactory.cs
- ProjectionPathSegment.cs
- ControlBuilder.cs
- ObjectQuery_EntitySqlExtensions.cs
- DataGridViewColumnCollectionDialog.cs
- DisplayMemberTemplateSelector.cs
- PenLineCapValidation.cs
- FlagsAttribute.cs
- JoinTreeSlot.cs
- HtmlImage.cs
- VirtualDirectoryMapping.cs
- ElementNotAvailableException.cs
- CommandField.cs
- ImpersonationContext.cs
- CustomPopupPlacement.cs
- OleDbRowUpdatedEvent.cs
- ProtocolsSection.cs
- FutureFactory.cs