Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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."
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.