AssemblyCache.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / AssemblyCache.cs / 1 / AssemblyCache.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.UI { 
    using System; 
    using System.Collections;
    using System.Reflection; 

    // Caches Assembly APIs to improve performance
    internal static class AssemblyCache {
        // PERF: Cache reference to System.Web.Extensions assembly 
        public static readonly Assembly SystemWebExtensions = typeof(AssemblyRef).Assembly;
 
        // Maps string (assembly name) to Assembly 
        private static readonly Hashtable _assemblyCache = Hashtable.Synchronized(new Hashtable());
 
        public static Assembly Load(string assemblyName) {
            Assembly assembly = (Assembly)_assemblyCache[assemblyName];
            if (assembly == null) {
                assembly = Assembly.Load(assemblyName); 
                _assemblyCache[assemblyName] = assembly;
            } 
            return assembly; 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

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