Castle.MicroKernel.Proxy.NotSupportedProxyFactory.Create C# (CSharp) Method

Create() public method

public Create ( IKernel kernel, object instance, ComponentModel mode, CreationContext context ) : object
kernel IKernel
instance object
mode Castle.Core.ComponentModel
context CreationContext
return object
		public object Create(IKernel kernel, object instance, ComponentModel mode, CreationContext context,
		                     params object[] constructorArguments)
		{
			throw new NotImplementedException(
				"You must supply an implementation of IProxyFactory " +
				"to use interceptors on the Microkernel");
		}

Same methods

NotSupportedProxyFactory::Create ( IProxyFactoryExtension customFactory, IKernel kernel, ComponentModel model, CreationContext context ) : object