ACC.GetAllExchangesInfoAsync method (1 of 2)
It will return instance of ExchangeFilterResult which contains collection of exchange info.
public Task<ExchangeFilterResult> GetAllExchangesInfoAsync(ProjectInfo projectInfo, int page)
parameter | description |
---|---|
projectInfo | ProjectInfo is mandatory |
page | Specifies what page to return. Page numbers are 0-based (the first page is page 0). |
Return Value
It will return exchange filter result
Collection of tuple Item1->fileURN, Item2-> fileVersionURN
Exceptions
exception | condition |
---|---|
Exception | Thrown when an unspecified error occurs. |
See Also
- class ACC
- namespace Autodesk.DataExchange.Extensions.HostingProvider
ACC.GetAllExchangesInfoAsync method (2 of 2)
It will return collection of exchange info.
public Task<ExchangeFilterResult> GetAllExchangesInfoAsync(string projectId, string folderId,
int page, bool subFolder)
parameter | description |
---|---|
projectId | Project Id is mandatory |
folderId | Folder Id is mandatory |
page | Specifies what page to return. Page numbers are 0-based (the first page is page 0). |
subFolder | It will consider sub folders exchanges if the parameter is true. |
Return Value
It will return exchange filter result. Collection of tuple Item1->fileURN, Item2-> fileVersionURN
Exceptions
exception | condition |
---|---|
ArgumentNullException | This exception is thrown when projectId and folderIds is null or empty. |
Exception | Thrown when an unspecified error occurs. |
See Also
- class ACC
- namespace Autodesk.DataExchange.Extensions.HostingProvider