Can a WCF contract use multiple callback interfaces?
Posted
by mafutrct
on Stack Overflow
See other posts from Stack Overflow
or by mafutrct
Published on 2010-03-23T22:52:41Z
Indexed on
2010/03/23
23:43 UTC
Read the original article
Hit count: 410
I'm trying something like this:
[ServiceContract (
CallbackContract = typeof (CallbackContract_1),
CallbackContract = typeof (CallbackContract_2),
CallbackContract = typeof (CallbackContract_3))
]
public interface SomeWcfContract {
I know it does not work like this. Is there still a way to get a single contract use multiple callback interfaces?
© Stack Overflow or respective owner