Request

Response

    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)
    
    parameterdescription
    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

    exceptioncondition
    Exception Thrown when an unspecified error occurs.

    See Also


    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)
    
    parameterdescription
    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

    exceptioncondition
    ArgumentNullException This exception is thrown when projectId and folderIds is null or empty.
    Exception Thrown when an unspecified error occurs.

    See Also