I am receiving AMF3 serialized objects via a socket connection, thus I have byte arrays of these objects.
What is the officially designated way to deserialize these byte arrays to an ASObject
or dictionary with FluorineFX?
The most promising of my tries
MemoryStream ms = new MemoryStream(data, 0, recv);
AMFReader input = new AMFReader(ms);
var t = input.ReadAMF3Object();
results in null
-objects. If i use ReadASObject
instead, i get an index out of bounds access violation.