- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用此代码在温莎城堡中实现工厂,但它会抛出异常,如本期标题所示。我正在关注 Documentation here 的示例.请指出我哪里出错了。
using System;
using System.Windows.Forms;
using Castle.Facilities.TypedFactory;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Castle.MicroKernel.Registration;
using Castle.Windsor;
namespace AsFactoryImplementation
{
interface IDummyComponnentFactory
{
IDummyComponnent creat();
void Relese(IDummyComponnent factory);
}
interface IDummyComponnent
{
void show();
}
class DummyComponnent:IDummyComponnent
{
public void show()
{
Console.WriteLine("just testing this for better performance");
}
}
class Program:WindsorContainer
{
static void Main(string[] args)
{
var container = new WindsorContainer();
container.AddFacility<TypedFactoryFacility>();
container.Register(Component.For<IDummyComponnent>().ImplementedBy<DummyComponnent>().Named("FirstConnection").LifeStyle.Transient
,Component.For<IDummyComponnentFactory>().AsFactory());
var val = container.Resolve<IDummyComponnent>();
val.show();
var val2 = container.Resolve<IDummyComponnentFactory>();
}
}
}
最佳答案
内部异常解释得还不够好吗?
Type
AsFactoryImplementation.IDummyComponnentFactory
is not visible to DynamicProxy. Can not create proxy for types that are not accessible. Make the type public, or internal and mark your assembly with[assembly:
attribute.
InternalsVisibleTo(InternalsVisible.ToDynamicProxyGenAssembly2)]
关于.net - 异常 : ComponentActivator: could not proxy AsFactoryImplementation. <FactoryType>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14750615/
我尝试使用此代码在温莎城堡中实现工厂,但它会抛出异常,如本期标题所示。我正在关注 Documentation here 的示例.请指出我哪里出错了。 using System; using Syste
这是场景,我扩展了 MvcWebRazorHostFactory所以我可以在构建时做一些额外的 View 魔术。确切的魔法并不重要。 我的 ~\Views\Web.config 中的注册看起来像这样:
我是一名优秀的程序员,十分优秀!