'宣言 Public Function ListChildrenAsync( _ ByVal path As System.String, _ ByVal recursive As System.Boolean, _ ByVal cancellationToken As System.Threading.CancellationToken _ ) As System.Threading.Tasks.Task(Of CatalogItem())
'使用法 Dim instance As ServerConnection Dim path As System.String Dim recursive As System.Boolean Dim cancellationToken As System.Threading.CancellationToken Dim value As System.Threading.Tasks.Task(Of CatalogItem()) value = instance.ListChildrenAsync(path, recursive, cancellationToken)
public System.Threading.Tasks.Task<CatalogItem[]> ListChildrenAsync( System.string path, System.bool recursive, System.Threading.CancellationToken cancellationToken )
パラメータ
- path
- The full path name of the parent folder.
- recursive
- A Boolean value that indicates whether to return the entire tree of child items below the specified item.
- cancellationToken
- System.Threading.CancellationToken that can be used to cancel a request.
戻り値の型
Task{RS.CatalogItem[]} returning an array of CatalogItem objects. If no children exist, this method returns an empty CatalogItem object.