classafButter::ButterResponse
sys::Obj afButter::ButterResponse
The HTTP response.
- asBuf
- Buf asBuf()- Return the response stream as a - Buf.- Convenience for in.readAllBuf. This method closes the response stream. 
- asInStream
- InStream asInStream()- Returns the body as an - InStream.
- asStr
- Str asStr()- Reads the response stream and converts it to a - Strusing the charset defined in the- Content-Typeheader.- This method closes the response stream. 
- body
- Buf body- The request body. 
- data
- A temporary store for request data, use to pass data between middleware. 
- headers
- HttpResponseHeaders headers- The HTTP repsonse headers. 
- make
- new make(|This in)- it-block ctor. 
- makeFromInStream
- new makeFromInStream(InStream in)- Creates a response reading real HTTP values from an - InStream. The whole response body is read in.
- makeFromStr
- new makeFromStr(Int statusCode, Str statusMsg, Str:Str headers, Str body, |This? f := null)- Create a response from a - Strbody.
- statusCode
- Int statusCode- The HTTP status code. 
- statusMsg
- Str statusMsg- The HTTP status message. 
- version
- Version version := Butter.http11- HTTP version of the response.