System.Web.Compilation.CachingCompiler.InsertType C# (CSharp) Method

InsertType() public static method

public static InsertType ( Type type, string filename ) : void
type System.Type
filename string
return void
 		public static void InsertType (Type type, string filename)
 		{
 			string [] cacheKeys = new string [] { cachePrefix + filename };
			CacheDependency dep = new CacheDependency (null, cacheKeys);
			HttpRuntime.InternalCache.Insert (cacheTypePrefix + filename, type, dep);
		}