Exception Thrown: "System.ComponentModel.ReflectPropertyDescriptor is not marked as Serializable"
Does this mean I missed marking something as serializable myself, or is this something beyond my control?
|
|
|||
|
|
|
It is in your control. Most likely the problem is the same as this: http://www.codeplex.com/SharedCache/Thread/View.aspx?ThreadId=19759 |
||
|
|
|
|
Do you have a field of this type in your class. If so, you will have to implement ISerializable yourself -- the automatic implementation requires that all of your fields are marked as Serializable. |
||
|
|
|
|
Can you give more context as to when this happens, and with which serializer? Most serializers have the ability to ignore certain members - Having a This (or similar symptoms) are also very common when you have an event (such as a change notification event /
|
||
|
|