More missing xmldoc
This commit is contained in:
@@ -1799,6 +1799,7 @@ namespace OpenMetaverse
|
||||
/// <param name="folderID">Put newly created link in folder with this UUID</param>
|
||||
/// <param name="item">Original inventory item</param>
|
||||
/// <param name="callback">Method to call upon creation of the link</param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
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
|
||||
/// <param name="folderID">Put newly created link in folder with this UUID</param>
|
||||
/// <param name="folder">Original inventory folder</param>
|
||||
/// <param name="callback">Method to call upon creation of the link</param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
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
|
||||
/// <param name="invType">Inventory Type</param>
|
||||
/// <param name="transactionID">Transaction UUID</param>
|
||||
/// <param name="callback">Method to call upon creation of the link</param>
|
||||
/// <param name="cancellationToken"></param>
|
||||
public void CreateLink(UUID folderID, UUID itemID, string name, string description,
|
||||
InventoryType invType, UUID transactionID, ItemCreatedCallback callback, CancellationToken cancellationToken = default)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user