Retrieves the message frame content.
$(ZMQREF zmq_msg_data())
import std.string: representation; auto msg = Frame(3); assert(msg.data.length == 3); msg.data[] = "foo".representation; // Slice operator -> array copy. assert(msg.data.asString() == "foo");
See Implementation
Retrieves the message frame content.