'宣言 Public Function ListChildren( _ ByVal path As System.String, _ ByVal recursive As System.Boolean, _ ByVal cancellationToken As System.Threading.CancellationToken _ ) As CatalogItem()
'使用法 Dim instance As ServerConnection Dim path As System.String Dim recursive As System.Boolean Dim cancellationToken As System.Threading.CancellationToken Dim value() As CatalogItem value = instance.ListChildren(path, recursive, cancellationToken)
public CatalogItem[] ListChildren( 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.
戻り値の型
An array of CatalogItem objects. If no children exist, this method returns an empty CatalogItem object.