1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
namespace System.Web.Script {
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
[
AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false),
SuppressMessage("Microsoft.Performance","CA1813:AvoidUnsealedAttributes", Justification="Intentially allowing for ajax assemblies to have a custom attribute type in order to override the virtual members. Result of looking for this attribute is cached.")
]
public class AjaxFrameworkAssemblyAttribute : Attribute {
protected internal virtual Assembly GetDefaultAjaxFrameworkAssembly(Assembly currentAssembly) {
return currentAssembly;
}
}
}
|