Click or drag to resize

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
C#
[FlagsAttribute]
public enum FileContentFilter
Members
  Member nameValueDescription
None0 Nothing filtered.
Vault1 Filter by vault.
ChangedBefore2 Filter by changed date. Only content records that are older than a specified date are retrieved.
ChangedAfter4 Filter by changed date. Only content records that are newer than a specified date are retrieved.
NotReferenced8 Retrieve only content records that are not referenced by file versions.
Referenced16 Retrieve only content records that are referenced by file versions.
UuidStartsWith32 The content UUID must start with a specific prefix.
UuidGreaterThan64 The content UUID must be greater than a specific value. Use this to 'page' through all contents.
HashEquals128 The hash value must be equal to a specific value. Use this to find duplicate content.
HashStartsWith256 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