Back to product page

IfModifiedSince property


Holds date for conditional request of the document.

Type

A Date value

Syntax

  • Basic
object.IfModifiedSince [= value]
The IfModifiedSince(object,value) syntax has these parts:
objectAn expression evaluating to an object of type HttpRequest.
valueA 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.

Platforms

Windows