There are sample for custom serialization. I add a field on a client side class:
public partial class SomeClass
{
[DoNotSerialize]
public IPEndPoint EndPoint
{
get
{
return new IPEndPoint(IPAddress.Any, 80);
}
}
}
But, the following error occurred:
System.Net.Sockets.SocketError.OperationNotSupported
{"The attempted operation is not supported for the type of object referenced"}
It occurred only when I used the IPEndPoint constructor. Why, I don't understand.
I had one issue when I added the following enum field:
[DoNotSerialize]
public MyEnum SomeField
{
get
{
return Enum.IsDefined(typeof(MyEnum ), FromDBField) ? (MyEnum )FromDBField: MyEnum.Unknown;
}
set
{
FromDBField = (int)(value);
}
}
And got the following error:
"The type 'MyService.MyEnum has no settable properties."

