You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EXI is a very compact representation for the Extensible Markup Language (XML) Information Set that is intended to simultaneously optimize performance and the utilization of computational resources.
So we need an interface that:
Converts Data to Object: FromExiData(...) // Deserialization
Converts Object to Data: ToExiData() // Serialization
//sender:
var student=new student();
student.City="XXX";
var bytes=student.ToExiData();
TcpSend(bytes);
//receiver:
var student=Student.FromExiData(recBytes);
Console.WriteLine("city:{student.City}");
EXI SPEC:
https://www.w3.org/XML/EXI/docs/format/exi.html
The text was updated successfully, but these errors were encountered: