IEWSClient.ListSubFoldersByPage

ListSubFoldersByPage(string, PageInfo)

Searches the specified folder in the given parent folder with paging Method supports paging.

public ExchangeFolderPageInfo ListSubFoldersByPage(string parentFolderUri, PageInfo page)
ParameterTypeDescription
parentFolderUriStringA parent folder URI
pagePageInfoA page info

Return Value

A ExchangeFolderPageInfo containing the found folder if folder name is specified; otherwise, returns all subfolders

See Also


ListSubFoldersByPage(string, int)

Searches the specified folder in the given parent folder with paging Method supports paging. Invokes for the first time in paging cycle.

public ExchangeFolderPageInfo ListSubFoldersByPage(string parentFolderUri, int itemsPerPage)
ParameterTypeDescription
parentFolderUriStringA parent folder URI
itemsPerPageInt32A number of folders in page

Return Value

A ExchangeFolderPageInfo containing the found folder if folder name is specified; otherwise, returns all subfolders

See Also


ListSubFoldersByPage(string, int, int)

Searches the specified folder in the given parent folder with paging Method supports paging.

public ExchangeFolderPageInfo ListSubFoldersByPage(string parentFolderUri, int itemsPerPage, 
    int pageOffset)
ParameterTypeDescription
parentFolderUriStringA parent folder URI
itemsPerPageInt32A number of folders in page
pageOffsetInt32An offset of next item in view

Return Value

A ExchangeFolderPageInfo containing the found folder if folder name is specified; otherwise, returns all subfolders

See Also