Specifies options for the recording granularity of updates to the DateContentLastAccessed property when content is accessed.

Note: Whenever content access recording is enabled, system performance might be impacted. The impact increases as you increase recording frequency. For more information, see ContentAccessRecordingLevel Property.


Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Enum ContentAccessRecordingLevel
C#
public enum ContentAccessRecordingLevel
C++
public enum class ContentAccessRecordingLevel
J#
public enum ContentAccessRecordingLevel
JScript
public enum ContentAccessRecordingLevel

Members

Member NameDescription
DAILYSpecifies that the DateContentLastAccessed property will be updated only when a day (86400 seconds) has elapsed since the last update of the DateContentLastAccessed property. Any access of content within a day of the last update will not be recorded.
HOURLYSpecifies that the DateContentLastAccessed property will be updated only when an hour (3600 seconds) has elapsed since the last update of the DateContentLastAccessed property. Any access of content within an hour of the last update will not be recorded.
IMMEDIATESpecifies that the DateContentLastAccessed property will be updated as soon as content is accessed. The value of this constant is 0 seconds.
NONESpecifies that updates to the DateContentLastAccessed property are disabled (which is the default behavior). The value of this constant, -1, is used as a special indicator and does not represent an amount of time.

See Also