public void SendVia(IOutputSocket outputOutputSocket)
        {
            var marshalledContent = _marshalling.Of(_content);

            outputOutputSocket.Open();
            outputOutputSocket.Send(marshalledContent);
            outputOutputSocket.Close();
        }