Castle.DynamicProxy.ModuleScope.RegisterInCache C# (CSharp) Method

RegisterInCache() public method

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.
return void
		public void RegisterInCache(CacheKey key, Type type)
		{
			typeCache[key] = type;
		}