コード例 #1
0
 /// <summary>
 /// Get the inventory items that match the path name.
 /// </summary>
 /// <param name="inventoryService"></param>
 /// <param name="userId"></param>
 /// <param name="path"></param>
 /// <returns>An empty list if no matching items were found.</returns>
 public static List <InventoryItemBase> GetInventoryItems(IInventoryService inventoryService, UUID userId, string path)
 {
     return(InventoryArchiveUtils.FindItemsByPath(inventoryService, userId, path));
 }