Part of twisted.web2.iweb View Source View In Hierarchy
Known implementations: twisted.web2.http.Request, twisted.web2.server.Request
Attribute | method | The HTTP method from the request line, e.g. GET |
Attribute | uri | The raw URI from the request line. May or may not include host. |
Attribute | clientproto | Protocol from the request line, e.g. HTTP/1.1 |
Attribute | headers | A http_headers.Headers instance of incoming headers. |
Attribute | stream | A stream.IByteStream of incoming data. |
Method | writeResponse | Write an IResponse object to the client |
Attribute | chanRequest | The ChannelRequest. I wonder if this is public really? |