ifModifiedSince property

DateTime? get ifModifiedSince

If this is non-null and the requested resource hasn't been modified since this date and time, the server should return a 304 Not Modified response.

This is parsed from the If-Modified-Since header in Headers. If Headers doesn't have an If-Modified-Since header, this will be null.

Throws FormatException, if incoming HTTP request has an invalid If-Modified-Since header.

Implementation

DateTime? get ifModifiedSince;
set ifModifiedSince (DateTime? value)

Implementation

set ifModifiedSince(DateTime? value);