FileContentFilter Enumeration |
Defines the filter options for a file content query.
Namespace:
PDTec.IceNet.Core.Database
Assembly:
PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax [FlagsAttribute]
public enum FileContentFilter
Members
| Member name | Value | Description |
---|
| None | 0 |
Nothing filtered.
|
| Vault | 1 |
Filter by vault.
|
| ChangedBefore | 2 |
Filter by changed date. Only content records that are older than a specified date are retrieved.
|
| ChangedAfter | 4 |
Filter by changed date. Only content records that are newer than a specified date are retrieved.
|
| NotReferenced | 8 |
Retrieve only content records that are not referenced by file versions.
|
| Referenced | 16 |
Retrieve only content records that are referenced by file versions.
|
| UuidStartsWith | 32 |
The content UUID must start with a specific prefix.
|
| UuidGreaterThan | 64 |
The content UUID must be greater than a specific value. Use this to 'page' through all contents.
|
| HashEquals | 128 |
The hash value must be equal to a specific value. Use this to find duplicate content.
|
| HashStartsWith | 256 |
The hash value must start with a specific value. Use this to find duplicate content if only a portion of the hash value is available.
|
See Also