Description
-
Holds date for conditional request of the document.
Property type
-
A Date value.
Syntax
-
object.IfModifiedSince [=
value]
The IfModifiedSince Property syntax has these parts:
| object |
An expression
evaluating to an object of type HttpRequest. |
| value |
A Date value. |
Remarks
-
This property is used with Get method to make
it conditional - if the requested document has not changed
since the date (and time) specified in this property, the
document will not be sent back to wodHttpDLX. Instead,
304 "Not Modified" reply
will be received. This can save your bandwidth for large
documents (such as pictures) that don't change
often.
This property is just a 'shortcut' to
Request.Headers("If-Modified-Since") value.
|