if i want to transmit binary data,,,will it be support by
Webservices or any exceptions ? define
Answer Posted / siva
Using binary formatter we can serilize and transmit the
binary data
using System.Runtime.Serialization.Formatters.Binary ;
BinaryFormatter oBinaryFrmat = new BinaryFormatter();
oBinaryFrmat.Serialize(,);
But the only thing is the firewall it has to be disabled.
If any issue in the above said answer please correct me.
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can you declare struct members as protected?
How many digits is a 32 bit number?
Explain lock, monitors, and mutex object in threading.
Can a abstract class have a constructor?
What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?
What are virtual destructors?
What is anonymous method in c#?
What is the resgen.exe tool used for?
Why do we use static class in c#?
What is super class in c#?
Where value types are stored in c#?
Explain a MSIL ? Why is it appreciated by all developers?
How do you remove white spaces from a string?
What is eager and lazy loading in c#?
What is the difference between do and while loop?