Can I customise the serialization process
Answer / kirti
Yes. XmlSerializer supports a range of attributes that can be used to configure serialization for a particular class. For example, a field or property can be marked with the [XmlIgnore] attribute to exclude it from serialization. Another example is the [XmlElement]
attribute, which can be used to specify the XML element name to be used for a particular property or field.
Serialization via SoapFormatter/BinaryFormatter can also be controlled to some extent by attributes. For example, the [NonSerialized] attribute is the equivalent of XmlSerializer's [XmlIgnore] attribute. Ultimate control of the serialization process can be acheived by implementing the the ISerializable interface on the class whose instances are to be serialized.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the mobile devices supported by .net platform
What is meant by domain model?
What are authentication filters in web api?
Can I look at the IL for an assembly
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
Define .NET architecture ?
mention what is the key advantage of using entity framework or ef?
Mention two instances where routing is not implemented or required?
What is difference between Viewbag and Viewdata in ASP.NET MVC?
What is Separation of Concerns in ASP.NET ASP.Net MVC?
What are action filters?
Can we have enum in entity framework?