Specifies options for the recording granularity of updates to the DateContentLastAccessed property
when content is accessed.
Namespace:
FileNet.Api.ConstantsNote 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.
Assembly: FileNet.Api (in FileNet.Api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enumeration ContentAccessRecordingLevel |
C# |
---|
public enum ContentAccessRecordingLevel |
Visual C++ |
---|
public enum class ContentAccessRecordingLevel |
JavaScript |
---|
FileNet.Api.Constants.ContentAccessRecordingLevel = function(); FileNet.Api.Constants.ContentAccessRecordingLevel.createEnum('FileNet.Api.Constants.ContentAccessRecordingLevel', false); |
Members
Type | Member name | Description |
---|---|---|
IMMEDIATE |
Specifies that the DateContentLastAccessed property will be updated as soon as content
is accessed. The value of this constant is 0 seconds.
| |
HOURLY |
Specifies 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.
| |
DAILY |
Specifies 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.
| |
NONE |
Specifies 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.
|