response.statusMessage

response.statusMessage

When using implicit headers (not calling response.writeHead() explicitly), this property controls the status message that will be sent to the client when the headers get flushed. If this is left as undefined then the standard message for the status code will be used.

Example:

response.statusMessage = 'Not found';

After response header was sent to the client, this property indicates the status message which was sent out.

doc_Nodejs
2016-04-30 04:42:13
Comments
Leave a Comment

Please login to continue.