From: 011netservice@gmail.com Date: 2022-04-24 Subject: DataMemberAttribute.txt DataMemberAttribute Class When applied to the member of a type, specifies that the member is part of a data contract and is serializable by the DataContractSerializer. [System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=false)] public sealed class DataMemberAttribute : Attribute ---------- 20210415 ref: https://docs.microsoft.com/en-us/dotnet/api/system.runtime.serialization.datamemberattribute?view=netframework-4.6 The following example shows a type to which the DataContractAttribute and DataMemberAttribute attributes have been applied. The Name property on the DataMemberAttribute is set to "ID". using System; using System.Collections; using System.IO; using System.Runtime.Serialization; using System.Xml; // You must apply a DataContractAttribute or SerializableAttribute // to a class to have it serialized by the DataContractSerializer. // Class 必須使用 DataContractAttribute 或 SerializableAttribute [DataContract()] class Person : IExtensibleDataObject { private string LastNameValue; // Apply the DataMemberAttribute to fields (or properties) // that must be serialized. // 欄位或屬性都可適用. [DataMember()] public string FirstName; [DataMember] public string LastName { get { return LastNameValue; } set { LastNameValue = value; } } // 序列化名稱為 "ID" [DataMember(Name = "ID")] public int IdNumber; // Note that you can apply the DataMemberAttribute to // a private field as well. // private field 也可以序列化. [DataMember] private string Secret; public Person(string newfName, string newLName, int newIdNumber) { FirstName = newfName; LastName = newLName; IdNumber = newIdNumber; Secret = newfName + newLName + newIdNumber; } // The extensionDataValue field holds data from future versions // of the type. This enables this type to be compatible with // future versions. The field is required to implement the // IExtensibleDataObject interface. private ExtensionDataObject extensionDatavalue; public ExtensionDataObject ExtensionData { get { return extensionDatavalue; } set { extensionDatavalue = value; } } } public class Test { public static void Main(string[] args) { try { WriteObject(@"DataMemberAttributeExample.xml"); ReadObject(@"DataMemberAttributeExample.xml"); } catch (Exception exc) { Console.WriteLine( "The serialization operation failed: {0} StackTrace: {1}", exc.Message, exc.StackTrace); } finally { Console.WriteLine("Press to exit...."); Console.ReadLine(); } } public static void WriteObject(string filename) { // Create a new instance of the Person class. Person p1 = new Person("Zighetti", "Barbara", 101); FileStream writer = new FileStream(filename, FileMode.OpenOrCreate); DataContractSerializer ser = new DataContractSerializer(typeof(Person)); ser.WriteObject(writer, p1); writer.Close(); } public static void ReadObject(string filename) { // Deserialize an instance of the Person class // from an XML file. FileStream fs = new FileStream(filename, FileMode.OpenOrCreate); DataContractSerializer ser = new DataContractSerializer(typeof(Person)); // Deserialize the data and read it from the instance. Person deserializedPerson = (Person)ser.ReadObject(fs); fs.Close(); Console.WriteLine(String.Format("{0} {1}, ID: {2}", deserializedPerson.FirstName, deserializedPerson.LastName, deserializedPerson.IdNumber)); } } Remarks Apply the DataMemberAttribute attribute in conjunction with the DataContractAttribute to identify members of a type that are part of a data contract. One of the serializers that can serialize data contracts is the DataContractSerializer. The data contract model is an "opt-in" model. Applying the DataMemberAttribute to a field or property explicitly specifies that the member value will be serialized. In contrast, the BinaryFormatter serializes public and private fields of a type, and the XmlSerializer serializes only public fields and properties of a type. Caution You can apply the DataMemberAttribute to private fields or properties. Be aware that the data returned by the member (even if it's private) will be serialized and deserialized, and thus can be viewed or intercepted by a malicious user or process. By default, the CLR member name is used as the name of the data member. By setting the Name property, you can customize the name of the data member. This can be used to provide a name that may not be allowed as a CLR member name. When mapping to XML using the DataContractSerializer, this name is used as the name of the schema element in a type. Note Properties to which the DataMemberAttribute attribute has been applied must have both get and set fields. They cannot be get-only or set-only. To serialize a property that should remain get-only by design (for example, a property that returns a collection), consider applying the DataMemberAttribute to the backing field instead.