[#NetMsg-Make] = xref:NetMsg.adoc[NetMsg]::Make :relfileprefix: ../ :mrdocs: Build a serialized network message of the given type from its payload. == Synopsis Declared in `<netmessagemaker.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> xref:CSerializedNetMsg.adoc[CSerializedNetMsg] Make( std::string msg_type, Args&&... args); ---- == Return Value The serialized network message ready to be sent. == Parameters [cols="1,4"] |=== | Name| Description | *msg_type* | The network message type string (command name). | *args* | The message payload fields, serialized in order into the message body. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#