Package version:

Interface ModificationConditions

Specifies HTTP options for conditional requests based on modification time.

interface ModificationConditions {
    ifModifiedSince?: any;
    ifUnmodifiedSince?: any;
}

Hierarchy (view full)

Properties

ifModifiedSince?: any

Specify this header value to operate only on a blob if it has been modified since the specified date/time.

ifUnmodifiedSince?: any

Specify this header value to operate only on a blob if it has not been modified since the specified date/time.