What HTTP response statuses mean that a client really got desired content?
The simple answer would be that all 2XX statuses mean that, but there is one notable exception I'm aware of: 304 NOT MODIFIED
. 304 means that a client already has the desired content, i. e. a client really got content.
Other redirects don't mean that since a client have to do another request.
What is the full list of the statuses that mean a client really got content? And by that I mean, what statuses normally make me think a client saw something useful?
P. S. I understand that my "really got content" is pretty informal.