Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / TargetControlTypeCache.cs / 1305376 / TargetControlTypeCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; // Cache TargetControlTypeAttributes to improve performance internal static class TargetControlTypeCache { // Maps Type (extender control) to Type[] (valid target control types) private static readonly Hashtable _targetControlTypeCache = Hashtable.Synchronized(new Hashtable()); public static Type[] GetTargetControlTypes(Type extenderControlType) { Type[] types = (Type[])_targetControlTypeCache[extenderControlType]; if (types == null) { types = GetTargetControlTypesInternal(extenderControlType); _targetControlTypeCache[extenderControlType] = types; } return types; } private static Type[] GetTargetControlTypesInternal(Type extenderControlType) { object[] attrs = extenderControlType.GetCustomAttributes(typeof(TargetControlTypeAttribute), true); Type[] types = new Type[attrs.Length]; for (int i = 0; i < attrs.Length; i++) { types[i] = ((TargetControlTypeAttribute)attrs[i]).TargetControlType; } return types; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; // Cache TargetControlTypeAttributes to improve performance internal static class TargetControlTypeCache { // Maps Type (extender control) to Type[] (valid target control types) private static readonly Hashtable _targetControlTypeCache = Hashtable.Synchronized(new Hashtable()); public static Type[] GetTargetControlTypes(Type extenderControlType) { Type[] types = (Type[])_targetControlTypeCache[extenderControlType]; if (types == null) { types = GetTargetControlTypesInternal(extenderControlType); _targetControlTypeCache[extenderControlType] = types; } return types; } private static Type[] GetTargetControlTypesInternal(Type extenderControlType) { object[] attrs = extenderControlType.GetCustomAttributes(typeof(TargetControlTypeAttribute), true); Type[] types = new Type[attrs.Length]; for (int i = 0; i < attrs.Length; i++) { types[i] = ((TargetControlTypeAttribute)attrs[i]).TargetControlType; } return types; } } } // 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
- XPathNodeInfoAtom.cs
- EntitySqlQueryBuilder.cs
- _CommandStream.cs
- Accessible.cs
- AuthenticationServiceManager.cs
- TreeView.cs
- LogicalExpressionTypeConverter.cs
- HtmlInputHidden.cs
- PeerContact.cs
- ObjectStateEntry.cs
- ConstraintEnumerator.cs
- MimeMultiPart.cs
- _UriSyntax.cs
- XPathMessageFilter.cs
- ReadOnlyTernaryTree.cs
- PropertyContainer.cs
- TreeViewAutomationPeer.cs
- SqlParameterCollection.cs
- TemplateControlCodeDomTreeGenerator.cs
- MetadataArtifactLoaderResource.cs
- HttpClientCertificate.cs
- Point4DConverter.cs
- ExtenderProvidedPropertyAttribute.cs
- ApplicationTrust.cs
- XmlWellformedWriter.cs
- TemplateBaseAction.cs
- CacheVirtualItemsEvent.cs
- XmlSchemaGroupRef.cs
- InputReport.cs
- ObjectListField.cs
- Function.cs
- CategoryNameCollection.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- ServiceDocument.cs
- SuppressMergeCheckAttribute.cs
- DoubleAnimation.cs
- MetricEntry.cs
- HttpConfigurationContext.cs
- GroupBoxRenderer.cs
- _LazyAsyncResult.cs
- XmlRootAttribute.cs
- Single.cs
- UInt16.cs
- ProxyAttribute.cs
- XmlDocument.cs
- SplashScreenNativeMethods.cs
- PropertyPath.cs
- Lock.cs
- XmlSchemaSimpleTypeList.cs
- IPPacketInformation.cs
- ContentElement.cs
- WebHttpEndpoint.cs
- EncodingTable.cs
- QueryOpeningEnumerator.cs
- RuntimeArgumentHandle.cs
- DecoderNLS.cs
- BoolExpression.cs
- ScanQueryOperator.cs
- AppDomainFactory.cs
- LinqDataSourceSelectEventArgs.cs
- XmlTypeAttribute.cs
- DebugHandleTracker.cs
- RepeaterItemEventArgs.cs
- WebConfigurationFileMap.cs
- StorageEntityContainerMapping.cs
- EntityTemplateUserControl.cs
- SelectorAutomationPeer.cs
- IPPacketInformation.cs
- PageAsyncTask.cs
- FamilyTypeface.cs
- SelectingProviderEventArgs.cs
- Point3DCollectionConverter.cs
- HwndSource.cs
- QilStrConcatenator.cs
- HwndSourceKeyboardInputSite.cs
- FrameworkContentElement.cs
- BindToObject.cs
- HwndStylusInputProvider.cs
- EmissiveMaterial.cs
- RuleProcessor.cs
- WebPartEventArgs.cs
- SizeConverter.cs
- milrender.cs
- lengthconverter.cs
- EventToken.cs
- SettingsAttributes.cs
- OverrideMode.cs
- ExtensionDataReader.cs
- TabControl.cs
- SapiRecoContext.cs
- AuthStoreRoleProvider.cs
- ChineseLunisolarCalendar.cs
- MatrixStack.cs
- NativeMethods.cs
- LinkedResource.cs
- sitestring.cs
- StackBuilderSink.cs
- PropertyConverter.cs
- OleServicesContext.cs
- ColorConverter.cs