There's some interface:

public interface IMessage
{
    string Content;
    Person Sender;
}

public class Priv : IMessage
{
    public string Content { get; set; }
    public Person Sender { get; set; }
    private int whatever;
}

public class Publ : IMessage
{
    public string Content { get; set; }
    public Person Sender { get; set; }
    private DateTime something;
}

Is it possible to use in wcf service IMessage instance? Like void SomeMethod(IMessage toSend)?

link|improve this question

72% accept rate
Sure you can, just make the interface a DataContract! Similar question: stackoverflow.com/questions/1090736/… – Kolky Nov 23 '11 at 12:56
feedback

1 Answer

up vote 3 down vote accepted

Yes, that is possible. You have to tell the Service the list of expected implementations you will send by using the KnownTypes attribute

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.