ConnectionGetDocumentVersionInformation Method |
Returns a variant array of values for the specified properties for a given document version.
Namespace: ICMeridianAPIAssembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.0.8.0 (4.0.8.0)
Syntaxpublic Object[] GetDocumentVersionInformation(
string vaultidentifier,
string docid,
Object verid,
Object properties
)
Public Function GetDocumentVersionInformation (
vaultidentifier As String,
docid As String,
verid As Object,
properties As Object
) As Object()
public:
array<Object^>^ GetDocumentVersionInformation(
String^ vaultidentifier,
String^ docid,
Object^ verid,
Object^ properties
)
member GetDocumentVersionInformation :
vaultidentifier : string *
docid : string *
verid : Object *
properties : Object -> Object[]
Parameters
- vaultidentifier
- Type: SystemString
The vault in which the document resides. - docid
- Type: SystemString
The unique identifier of the document inside the vault. - verid
- Type: SystemObject
Either an integer version index starting from zero, or (string) the unique identifier of the document version. - properties
- Type: SystemObject
The properties of which the values are to be retrieved.
This can be an array of strings each having a property name, or a single name of the property.
If it is empty (Null, Nothing) then a predefined set of properties is returned
in the form of an array. Element at index 0 is the ID of the document, at index 1 is the display name,...
Return Value
Type:
ObjectArray of values for the requested properties.
Remarks
See Also