DataMemberAttribute.IsRequired Property
.NET Framework 4
Gets or sets a value that instructs the serialization engine that the member must be present when reading or deserializing.
Assembly: System.Runtime.Serialization (in System.Runtime.Serialization.dll)
| Exception | Condition |
|---|---|
| SerializationException |
the member is not present. |
The property is used for ensuring compatibility with future versions of a type. For more information, see Data Contract Versioning and Best Practices: Data Contract Versioning.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
DataMember extended to DataAnnotation
It would also be nice if DataMember could integrate some concepts of the DataAnnotation.
It would improve performance since validation would happen during serialization process and enable generation of proxies that integrate such concepts. Note that Xml Schema already support such concepts.
It would improve performance since validation would happen during serialization process and enable generation of proxies that integrate such concepts. Note that Xml Schema already support such concepts.
- 3/31/2011
- odanvin
Default value
As I can see from generated code in service reference default value is FALSE
- 3/19/2011
- Alexandr Kozlenko