ConnectionGetReferences Method |
Returns a variant array of object IDs for all references of a document according to a defined reference type.
Namespace: ICMeridianAPIAssembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.0.8.0 (4.0.8.0)
Syntaxpublic Object[] GetReferences(
string vaultidentifier,
string docid,
string reftypename,
bool bIncoming = false
)
Public Function GetReferences (
vaultidentifier As String,
docid As String,
reftypename As String,
Optional bIncoming As Boolean = false
) As Object()
public:
array<Object^>^ GetReferences(
String^ vaultidentifier,
String^ docid,
String^ reftypename,
bool bIncoming = false
)
member GetReferences :
vaultidentifier : string *
docid : string *
reftypename : string *
?bIncoming : bool
(* Defaults:
let _bIncoming = defaultArg bIncoming false
*)
-> Object[]
Parameters
- vaultidentifier
- Type: SystemString
The vault in which the document resides. - docid
- Type: SystemString
The unique identifier of the document inside the vault. - reftypename
- Type: SystemString
The internal or display name of the document reference type that is used to define the relationship. - bIncoming (Optional)
- Type: SystemBoolean
If bIncoming is False, the docid is the source document of the reference. If bIncoming is True, the docid
is the destination of the reference.
Return Value
Type:
ObjectArray of IDs of documents the refs exist from the specified document (or to it if bIncoming is specified as True)
Remarks
See Also