From 2ef424c1f6c68e6967ce6f731230d7652180b411 Mon Sep 17 00:00:00 2001 From: cinder Date: Sun, 17 Aug 2025 19:42:55 -0500 Subject: [PATCH] More missing xmldoc --- LibreMetaverse/Inventory/InventoryManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LibreMetaverse/Inventory/InventoryManager.cs b/LibreMetaverse/Inventory/InventoryManager.cs index a75cfd52..48b23522 100644 --- a/LibreMetaverse/Inventory/InventoryManager.cs +++ b/LibreMetaverse/Inventory/InventoryManager.cs @@ -1799,6 +1799,7 @@ namespace OpenMetaverse /// Put newly created link in folder with this UUID /// Original inventory item /// Method to call upon creation of the link + /// public void CreateLink(UUID folderID, InventoryItem item, ItemCreatedCallback callback, CancellationToken cancellationToken = default) { CreateLink(folderID, item.UUID, item.Name, item.Description, item.InventoryType, UUID.Random(), callback, cancellationToken); @@ -1810,6 +1811,7 @@ namespace OpenMetaverse /// Put newly created link in folder with this UUID /// Original inventory folder /// Method to call upon creation of the link + /// public void CreateLink(UUID folderID, InventoryFolder folder, ItemCreatedCallback callback, CancellationToken cancellationToken = default) { CreateLink(folderID, folder.UUID, folder.Name, "", InventoryType.Folder, UUID.Random(), callback, cancellationToken); @@ -1825,6 +1827,7 @@ namespace OpenMetaverse /// Inventory Type /// Transaction UUID /// Method to call upon creation of the link + /// public void CreateLink(UUID folderID, UUID itemID, string name, string description, InventoryType invType, UUID transactionID, ItemCreatedCallback callback, CancellationToken cancellationToken = default) {