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 / 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; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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; } } } } } // 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
- PropertyValueEditor.cs
- TemplateKey.cs
- webeventbuffer.cs
- ThrowOnMultipleAssignment.cs
- PropertyGrid.cs
- GeneratedView.cs
- TextEffectCollection.cs
- DataControlFieldsEditor.cs
- StringResourceManager.cs
- RuntimeHelpers.cs
- OdbcParameter.cs
- MessageTransmitTraceRecord.cs
- SafePointer.cs
- SplitterPanelDesigner.cs
- SequenceNumber.cs
- LocationSectionRecord.cs
- WebPartDescription.cs
- DnsEndPoint.cs
- TableAdapterManagerNameHandler.cs
- PersonalizationAdministration.cs
- CellTreeNode.cs
- BitmapDownload.cs
- PartialTrustHelpers.cs
- Rijndael.cs
- SvcMapFile.cs
- CodePageUtils.cs
- MarshalDirectiveException.cs
- SqlReferenceCollection.cs
- Trace.cs
- ClientApiGenerator.cs
- XmlWriterTraceListener.cs
- CompiledAction.cs
- _ShellExpression.cs
- GridViewHeaderRowPresenter.cs
- WriteTimeStream.cs
- TextServicesProperty.cs
- HttpFileCollectionWrapper.cs
- OdbcUtils.cs
- NullableIntAverageAggregationOperator.cs
- NumericUpDownAccelerationCollection.cs
- OracleBoolean.cs
- RijndaelCryptoServiceProvider.cs
- _SingleItemRequestCache.cs
- ScrollProviderWrapper.cs
- CrossAppDomainChannel.cs
- Knowncolors.cs
- SqlDataSource.cs
- UpdateTranslator.cs
- TextRangeEditLists.cs
- Events.cs
- FixedHyperLink.cs
- Soap.cs
- BaseCodePageEncoding.cs
- FrameAutomationPeer.cs
- DataGridTable.cs
- ValueQuery.cs
- QuaternionAnimation.cs
- HandleCollector.cs
- IgnoreSection.cs
- Sequence.cs
- ImpersonationContext.cs
- TdsParser.cs
- addressfiltermode.cs
- Function.cs
- CompilerState.cs
- CustomLineCap.cs
- BitmapSizeOptions.cs
- EnvironmentPermission.cs
- EventRouteFactory.cs
- remotingproxy.cs
- KnownIds.cs
- CriticalFinalizerObject.cs
- CorrelationExtension.cs
- ParameterCollection.cs
- ClrPerspective.cs
- AttributeUsageAttribute.cs
- ForEachDesigner.xaml.cs
- ToolStripSeparator.cs
- DoubleCollection.cs
- XmlSchemaCollection.cs
- ArgumentOutOfRangeException.cs
- ProfilePropertySettingsCollection.cs
- DataGridViewCellCancelEventArgs.cs
- ReadOnlyNameValueCollection.cs
- SupportsEventValidationAttribute.cs
- ParsedAttributeCollection.cs
- CompoundFileReference.cs
- XamlStream.cs
- GPStream.cs
- PropertyIdentifier.cs
- WebHttpDispatchOperationSelector.cs
- DecimalAnimation.cs
- SignatureGenerator.cs
- WSHttpBinding.cs
- ChangePasswordAutoFormat.cs
- TypeForwardedToAttribute.cs
- SecurityContextSecurityTokenAuthenticator.cs
- CorrelationTokenTypeConvertor.cs
- XmlSerializer.cs
- FormViewPageEventArgs.cs