Castle.DynamicProxy.ModuleScope.RegisterInCache C# (CSharp) 메소드

RegisterInCache() 공개 메소드

Registers a type in this scope's type cache.
public RegisterInCache ( Castle.DynamicProxy.Generators.CacheKey key, Type type ) : void
key Castle.DynamicProxy.Generators.CacheKey The key to be associated with the type.
type System.Type The type to be stored in the cache.
리턴 void
		public void RegisterInCache(CacheKey key, Type type)
		{
			typeCache[key] = type;
		}