ServerResponse.headers
Property Description |
The server response headers. For more information, see HTTP Header Information. |
Type |
Object (read-only) If multiple values are assigned to one header name, the values are returned as an array. For example:
|
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2015.2 |
Errors
Error Code |
Thrown If |
---|---|
|
You attempted to edit this property. This property is read-only. |
Syntax
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/http Module Script Samples.
// Add additional code
...
log.debug({
title: "Server Response Headers",
details: ServerResponse.headers
});
...
// Add additional code