amf3

How to deserialize an AMF3-object from a byte array with FluorineFX

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...