PrepAway - Latest Free Exam Questions & Answers

Which two actions should you perform ?

You are implementing an ASP.NET Web site. The site contains the following class.
public class Address
{
public int AddressType;
public string Line1;
public string Line2;
public string City;
public string ZipPostalCode;
}
The Web site interacts with an external data service that requires Address instances to be given in the following XML format.
<Address AddressType=”2″>
<Line1>250 Race Court</Line1>
<City>Chicago</City>
<PostalCode>60603</PostalCode>
</Address>
You need to ensure that Address instances that are serialized by the XmlSerializer class meet the XML format requirements of the external data service.
Which two actions should you perform (Each correct answer presents part of the solution. Choose two.)

PrepAway - Latest Free Exam Questions & Answers

A.
Add the following attribute to the AddressType field.
[XmlAttribute]

B.
Add the following attribute to the Line2 field.
[XmlElement(IsNullable=true)]

C.
Add the following attribute to the ZipPostalCode field.
[XmlAttribute(“ZipCode”)]

D.
Add the following attribute to the ZipPostalCode field.
[XmlElement(“ZipCode”)]


Leave a Reply