C # serialization Modify element name

Source: Internet
Author: User

Sometimes the string that serializes itself is sent to another interface, but it is found that the object of the receiving end is different from the property that the object is built, and when you do not want to modify the property name of the object, what should I do?

Very simple, is to give their own attributes to add a logo on the line, the specific look at the code:

1 [DataContract]2      Public classSampleClass3     {4[DataMember (Name ="Studentname")]5          Public stringName {Get;Set; }6[DataMember (Name ="Studentage")]7          PublicInt32 Age {Get;Set; }8[DataMember (Name ="studentaddress")]9          Public stringAddress {Get;Set; }Ten  One          Public Override stringToString () A         { -             using(MemoryStream Menorystream =NewMemoryStream ()) -             { theDataContractJsonSerializer serializer =NewDataContractJsonSerializer (typeof(SampleClass)); -Serializer. WriteObject (Menorystream, This); -                 returnEncoding.UTF8.GetString (Menorystream.toarray ()); -             } +         } -}

After specifying the data contract through DataContract, you can add the DataMember attribute to the property that needs to be serialized, and pass the name parameter to modify the property names, order sort ... It's not easy, just try it yourself.

Note If the DataContract attribute is added, if the attribute is not added DataMember, the property will not be serialized

C # serialization Modify element name

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.