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.8.0 (4.0.8.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
)
member GetUniqueValues :
vaultidentifier : string *
SelectCustomPropertyName : string *
?Wildcard : string *
?documenttypenames : Object *
?properties : Object *
?criterias : Object *
?values : Object
(* Defaults:
let _Wildcard = defaultArg Wildcard "*.*"
let _documenttypenames = defaultArg documenttypenames null
let _properties = defaultArg properties null
let _criterias = defaultArg criterias null
let _values = defaultArg values null
*)
-> Object
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. - 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