Does WCF support nullable enums? I have a DataMember that is a nullable enum type on the server-side however, when I generate a client-side proxy the type in the proxy is non-nullable.
|
|
Is there a (propertyname)Specified property of type boolean?
Do you have a "MyEnumValueSpecified" of type bool in your WCF proxy? WCF uses this to define whether or not a particular property has been specified or not. That way, even if the property is of type "Enum....." it can be "nullable". Marc |
||
|
