ConnectionGetUniqueValues Method |
Collect a set of unique non-empty values for a given custom property on a given set of documents.
Namespace: ICMeridianAPIAssembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.0.9.0 (4.0.9.0)
Syntaxpublic Object GetUniqueValues(
string vaultidentifier,
string SelectCustomPropertyName,
string Wildcard = "*.*",
Object documenttypenames = null,
Object properties = null,
Object criterias = null,
Object values = null
)
Public Function GetUniqueValues (
vaultidentifier As String,
SelectCustomPropertyName As String,
Optional Wildcard As String = "*.*",
Optional documenttypenames As Object = Nothing,
Optional properties As Object = Nothing,
Optional criterias As Object = Nothing,
Optional values As Object = Nothing
) As Object
public:
Object^ GetUniqueValues(
String^ vaultidentifier,
String^ SelectCustomPropertyName,
String^ Wildcard = L"*.*",
Object^ documenttypenames = nullptr,
Object^ properties = nullptr,
Object^ criterias = nullptr,
Object^ values = nullptr
)
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:
ObjectArray of unique non-empty values of the requested property.
RemarksThe arrays of properties, criteria and values can either be all left unspecified, or
they all should be arrays of the same length.
See Also