up vote 8 down vote favorite
2
share [g+] share [fb]

I have an interface that defines some methods I would like certain classes to implement.

public interface IMyInterface
{
    MethodA;
    MethodB;
}

Additionally I would like all classes implementing this interface to be serializable. If I change the interface definition to implement ISerializable as below...:

public interface IMyInterface : ISerializable
{
    MethodA;
    MethodB;
}

...all classes must now explicitly implement serialization as far as I am aware, since if you implement ISerializable you must implement the GetObjectData member (and the necessary constructor to deserialize).

How can I insist classes using my interface be serializable, but without forcing them to custom implement serialization?

Thanks, Will

link|improve this question

feedback

5 Answers

There does not seem to be a way to do this, but I wish there were.

Note two things though:

  • The Serializable attribute can not be inherited from a base class, even if the base class is marked as abstract.

  • You don't technically need the Serializable attribute, IF you are using an XmlSerializer because it does not make use of object graphs.

link|improve this answer
feedback

If you want to use the default serialization then you need to add the SerializableAttribute . One alternative would be to use an abstract class instead of an interface, then add the SerializableAttribute to the abstract class. If you're implementing your own custom serialization then you want to implement ISerializable, otherwise stick with SerializableAttribute .

link|improve this answer
feedback

Write a class that implements ISerializationSurrogate and use that to serialize classes that aren't serializable or where you're not sure of the serialization implementation.

link|improve this answer
feedback

You could write a custom FxCop rule and validate check-ins against it.

link|improve this answer
feedback
up vote 0 down vote accepted

Thanks for the replies. It would be nice to be able to force classes derived from an interface to implement serialization without this then forcing them to custom serialize but it doesn't seem to be possible.

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.