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: 6.0.0.0 (6.0.6225.27214)
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.
UuidStartsWith16 The content UUID must start with a specific prefix.
UuidGreaterThan32 The content UUID must be greater than a specific value. Use this to 'page' through all contents.
HashEquals64 The hash value must be equal to a specific value. Use this to find duplicate content.
HashStartsWith128 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