Question:You are writing an application that uses SOAP to exchange data with other applications. You use a Department class that inherits from ArrayList to send objects to another application. The Department object is named dept.
You need to ensure that the application serializes the Department object for transport by using SOAP.
Which code should you use?
A Dim formatter As New SoapFormatter()
Dim myStream As New MemoryStream()
Dim o as Object
For Each o In dept
formatter.Serialize(myStream, o)
Next
B Dim formatter As New SoapFormatter()
Dim buffer As Byte() = New Byte(dept.Capacity)
Dim myStream As New MemoryStream(buffer)
formatter.Serialize(myStream, dept)
C Dim formatter As New SoapFormatter()
Dim buffer As Byte() = New Byte(dept.Capacity) {}
"A Composite Solution With Just One Click" - Certification Guaranteed 167 Microsoft 70-536 Exam
Dim myStream As New MemoryStream(buffer)
Dim o As Object
For Each o In dept
formatter.Serialize(myStream, o)
Next
D Dim formatter As New SoapFormatter()
Dim myStream As New MemoryStream()
formatter.Serialize(myStream, dept)