TargetControlTypeCache.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / 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.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK