Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / AssemblyCache.cs / 1305376 / AssemblyCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections; using System.Collections.Concurrent; using System.Diagnostics; using System.Reflection; using System.Web.Configuration; using System.Web.Script; // Caches Assembly APIs to improve performance internal static class AssemblyCache { // PERF: Cache reference to System.Web.Extensions assembly. Use ScriptManager since it's guaranteed to be in S.W.E public static readonly Assembly SystemWebExtensions = typeof(ScriptManager).Assembly; public static readonly Assembly SystemWeb = typeof(Page).Assembly; private static CompilationSection _compilationSection; internal static bool _useCompilationSection = true; // Maps string (assembly name) to Assembly private static readonly Hashtable _assemblyCache = Hashtable.Synchronized(new Hashtable()); // Maps assembly to Version // internal so it can be manipulated by the unit test suite internal static readonly Hashtable _versionCache = Hashtable.Synchronized(new Hashtable()); // Maps an assembly to its ajax framework assembly attribute. If it doesn't have one, it maps it to a null value private static readonly ConcurrentDictionary_ajaxAssemblyAttributeCache = new ConcurrentDictionary (); private static CompilationSection CompilationSection { get { if (_compilationSection == null) { _compilationSection = RuntimeConfig.GetAppConfig().Compilation; } return _compilationSection; } } public static Version GetVersion(Assembly assembly) { Debug.Assert(assembly != null); Version version = (Version)_versionCache[assembly]; if (version == null) { // use new AssemblyName() instead of assembly.GetName() so it works in medium trust version = new AssemblyName(assembly.FullName).Version; _versionCache[assembly] = version; } return version; } public static Assembly Load(string assemblyName) { Debug.Assert(!String.IsNullOrEmpty(assemblyName)); Assembly assembly = (Assembly)_assemblyCache[assemblyName]; if (assembly == null) { // _useCompilationSection must be set to false in a unit test environment since there // is no http runtime, and therefore no trust level is set. if (_useCompilationSection) { assembly = CompilationSection.LoadAssembly(assemblyName, true); } else { assembly = Assembly.Load(assemblyName); } _assemblyCache[assemblyName] = assembly; } return assembly; } public static bool IsAjaxFrameworkAssembly(Assembly assembly) { return (GetAjaxFrameworkAssemblyAttribute(assembly) != null); } public static AjaxFrameworkAssemblyAttribute GetAjaxFrameworkAssemblyAttribute(Assembly assembly) { Debug.Assert(assembly != null); AjaxFrameworkAssemblyAttribute ajaxFrameworkAssemblyAttribute = null; if (!_ajaxAssemblyAttributeCache.TryGetValue(assembly, out ajaxFrameworkAssemblyAttribute)) { foreach (Attribute attribute in assembly.GetCustomAttributes(false)) { if (attribute is AjaxFrameworkAssemblyAttribute) { ajaxFrameworkAssemblyAttribute = (AjaxFrameworkAssemblyAttribute)attribute; break; } } _ajaxAssemblyAttributeCache.TryAdd(assembly, ajaxFrameworkAssemblyAttribute); } return ajaxFrameworkAssemblyAttribute; } } } // 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; using System.Collections.Concurrent; using System.Diagnostics; using System.Reflection; using System.Web.Configuration; using System.Web.Script; // Caches Assembly APIs to improve performance internal static class AssemblyCache { // PERF: Cache reference to System.Web.Extensions assembly. Use ScriptManager since it's guaranteed to be in S.W.E public static readonly Assembly SystemWebExtensions = typeof(ScriptManager).Assembly; public static readonly Assembly SystemWeb = typeof(Page).Assembly; private static CompilationSection _compilationSection; internal static bool _useCompilationSection = true; // Maps string (assembly name) to Assembly private static readonly Hashtable _assemblyCache = Hashtable.Synchronized(new Hashtable()); // Maps assembly to Version // internal so it can be manipulated by the unit test suite internal static readonly Hashtable _versionCache = Hashtable.Synchronized(new Hashtable()); // Maps an assembly to its ajax framework assembly attribute. If it doesn't have one, it maps it to a null value private static readonly ConcurrentDictionary_ajaxAssemblyAttributeCache = new ConcurrentDictionary (); private static CompilationSection CompilationSection { get { if (_compilationSection == null) { _compilationSection = RuntimeConfig.GetAppConfig().Compilation; } return _compilationSection; } } public static Version GetVersion(Assembly assembly) { Debug.Assert(assembly != null); Version version = (Version)_versionCache[assembly]; if (version == null) { // use new AssemblyName() instead of assembly.GetName() so it works in medium trust version = new AssemblyName(assembly.FullName).Version; _versionCache[assembly] = version; } return version; } public static Assembly Load(string assemblyName) { Debug.Assert(!String.IsNullOrEmpty(assemblyName)); Assembly assembly = (Assembly)_assemblyCache[assemblyName]; if (assembly == null) { // _useCompilationSection must be set to false in a unit test environment since there // is no http runtime, and therefore no trust level is set. if (_useCompilationSection) { assembly = CompilationSection.LoadAssembly(assemblyName, true); } else { assembly = Assembly.Load(assemblyName); } _assemblyCache[assemblyName] = assembly; } return assembly; } public static bool IsAjaxFrameworkAssembly(Assembly assembly) { return (GetAjaxFrameworkAssemblyAttribute(assembly) != null); } public static AjaxFrameworkAssemblyAttribute GetAjaxFrameworkAssemblyAttribute(Assembly assembly) { Debug.Assert(assembly != null); AjaxFrameworkAssemblyAttribute ajaxFrameworkAssemblyAttribute = null; if (!_ajaxAssemblyAttributeCache.TryGetValue(assembly, out ajaxFrameworkAssemblyAttribute)) { foreach (Attribute attribute in assembly.GetCustomAttributes(false)) { if (attribute is AjaxFrameworkAssemblyAttribute) { ajaxFrameworkAssemblyAttribute = (AjaxFrameworkAssemblyAttribute)attribute; break; } } _ajaxAssemblyAttributeCache.TryAdd(assembly, ajaxFrameworkAssemblyAttribute); } return ajaxFrameworkAssemblyAttribute; } } } // 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
- PackagePart.cs
- BatchWriter.cs
- BookmarkResumptionRecord.cs
- XmlNodeList.cs
- WebSysDefaultValueAttribute.cs
- PathFigureCollection.cs
- ValueHandle.cs
- recordstatefactory.cs
- PagerSettings.cs
- BufferCache.cs
- ArraySortHelper.cs
- AutomationEventArgs.cs
- DragSelectionMessageFilter.cs
- LoadMessageLogger.cs
- CompilationLock.cs
- HandlerFactoryCache.cs
- AspNetHostingPermission.cs
- SecurityAccessDeniedException.cs
- DataServiceResponse.cs
- LexicalChunk.cs
- ContentType.cs
- MultiSelector.cs
- AddingNewEventArgs.cs
- CachedBitmap.cs
- Function.cs
- MexNamedPipeBindingElement.cs
- WebPartZone.cs
- RightsManagementEncryptionTransform.cs
- MemberRelationshipService.cs
- DataGridViewButtonCell.cs
- RequestSecurityToken.cs
- Keyboard.cs
- GridViewUpdatedEventArgs.cs
- UdpAnnouncementEndpoint.cs
- SubtreeProcessor.cs
- LinkedList.cs
- ProviderConnectionPointCollection.cs
- WebReferencesBuildProvider.cs
- JsonFormatGeneratorStatics.cs
- TimeManager.cs
- FieldDescriptor.cs
- PropertyItem.cs
- ByteStorage.cs
- SQLInt64Storage.cs
- CommandManager.cs
- WizardDesigner.cs
- FormViewPagerRow.cs
- CodeRemoveEventStatement.cs
- ComponentResourceKey.cs
- UshortList2.cs
- ScaleTransform3D.cs
- localization.cs
- Subtree.cs
- SaveFileDialog.cs
- MetadataHelper.cs
- Adorner.cs
- MemoryFailPoint.cs
- Zone.cs
- CssClassPropertyAttribute.cs
- XsltException.cs
- DetailsViewRow.cs
- DispatcherHooks.cs
- WindowsIdentity.cs
- LineBreakRecord.cs
- ToolZone.cs
- StrongNameMembershipCondition.cs
- RepeaterItemEventArgs.cs
- ComMethodElement.cs
- ConfigXmlAttribute.cs
- PagesSection.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- CompilerScope.cs
- RelAssertionDirectKeyIdentifierClause.cs
- AutomationPropertyInfo.cs
- ClientFormsIdentity.cs
- SafePointer.cs
- PropertyInfoSet.cs
- TypeDependencyAttribute.cs
- ClientRolePrincipal.cs
- CommandValueSerializer.cs
- coordinatorfactory.cs
- RegionInfo.cs
- HtmlContainerControl.cs
- Themes.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- ExchangeUtilities.cs
- ReadOnlyDataSourceView.cs
- DescriptionAttribute.cs
- DbDataRecord.cs
- HtmlButton.cs
- SequentialUshortCollection.cs
- PropertyNames.cs
- HostingEnvironmentSection.cs
- DataExpression.cs
- ColumnReorderedEventArgs.cs
- SrgsNameValueTag.cs
- SemanticKeyElement.cs
- DesignSurface.cs
- FixedTextContainer.cs
- ConfigurationPropertyAttribute.cs