Is there a way how to (de)serialize entire RespMsg in RFA.NET so that those can be efficiently (means without generating GC garbage and without unnecessary processing) stored and then decoded later?
The use case behind this question is logging. We need to log each incoming message (along with our receiving and processing time stamps). Logs are not expected to be human readable. But they are expected to contain all needed information for investigations - means we need to be able to retrieve same info that the application did.
Manual transforming of the message to string (similar to example app) is a very inefficient way how to achieve this.
One solution to this seems to be by using
\Connections\<connectionName>\traceMsgToFile = true
This however seems to log messages in very verbose format, plus we are unable to add our application timestamps