API complex data constructions
The following complex data constructions are used by the MFT FS REST Services API:
Collection<T>: A collection of objects of the same type.
The following XML formatting is used to pass any collection between client and server:
Sample XML
<FileNames>
<String>Name #1</String>
<String>Another Name</String>
</FileNames>
Corresponding Object
Collection<string> FileNames;
Was this topic helpful?