Back to product page
- Introduction
- License agreement
- Getting Started
- Enumerations
- Objects
- How to get support?
- Technical information
- Fast notifications interface
- Error list
SendHeaders method
Sends response headers.
Syntax
- Basic
object.SendHeaders()
The SendHeaders(object) syntax has these parts:
The SendHeaders(object) syntax has these parts:
object | An expression evaluating to an object of type WebResponse |
Remarks
This method will send response headers to the client, but will not send response body - yet. You are free to change response body in the meantime, and call Response.Send method when you want it to be delivered completely.Or, you can call SendChunk method (assuming TransferEncoding property is set to ChunkedEncoding) to send parts of the response. Once again, when you want response to be fully delivered, call Response.Send method.