Click or drag to resize
ConnectionGetUniqueValues Method
Collect a set of unique non-empty values for a given custom property on a given set of documents.

Namespace: ICMeridianAPI
Assembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.0.9.0 (4.0.9.0)
Syntax
public Object GetUniqueValues(
	string vaultidentifier,
	string SelectCustomPropertyName,
	string Wildcard = "*.*",
	Object documenttypenames = null,
	Object properties = null,
	Object criterias = null,
	Object values = null
)

Parameters

vaultidentifier
Type: SystemString
The vault in which the search will be performed.
SelectCustomPropertyName
Type: SystemString
Name of the custom property the request is for. It can be a fully qualified PropertySet.PropertyName; Or just a property name - in this case property set CUSTOM is assumed.
Wildcard (Optional)
Type: SystemString
Optional. Wildcard for document names, by delault all documents (*.*)
documenttypenames (Optional)
Type: SystemObject
Optional. Array of names of document types to restrict the search to. By default no restriction.
properties (Optional)
Type: SystemObject
Optional. Array of property names of criteria.
criterias (Optional)
Type: SystemObject
Optional. Array of criterion definitions.
values (Optional)
Type: SystemObject
Optional. Array of values for the criteria.

Return Value

Type: Object
Array of unique non-empty values of the requested property.
Remarks
The arrays of properties, criteria and values can either be all left unspecified, or they all should be arrays of the same length.
See Also