0
我有List<Type>
,這裏Type是我使用反射的界面。 那麼如何在這些Type上使用channnel工廠創建wcf代理。在System.Type上創建動態代理
,如:
foreach(Type t in types)
{
t proxy = ChannelFactory<t>.CreateChannel(new NetTcpBinding(),
new EndpointAddress(serviceAddress));
}
這裏t是接口,但上面的代碼是給編譯器error.Can有人告訴我如何在類型創建WCF服務代理。
THX使用上面的代碼即時得到編譯器錯誤爲「找到隱式類型的數組沒有最好類型的」快速reply.While。 – Geeta
我已更新我的答案。只需寫入'new object []'而不是'new []' – Jan
通過將它作爲新對象[] {new NetTcpBinding(),new EndpointAddress(serviceAddress)} – Geeta