if i want to transmit binary data,,,will it be support by
Webservices or any exceptions ? define
Answers were Sorted based on User's Feedback
Answer / 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 |
Is nullable type c#?
How do I move from one form to another in c#?
What is using keyword in C#?
What is threading in c# with example?
What is a system lock?
What is a helper method in c#?
Is post back c#?
Explain the working of serialization?
What is an interface class in c#?
What is the difference while using directive vs using statement ?
What is the use of flag in c#?
Okay, so an int is a value type, and a class is a reference type. How can int be derived from object?