LlLinksetDataDelete

From Second Life Wiki
Revision as of 11:08, 17 October 2022 by Rider Linden (talk | contribs)
Jump to navigation Jump to search

Summary

Summary: llLinksetDataDelete, llLinksetDataDeleteProtected

The llLinksetDataDelete and llLinksetDataDeleteProtected functions erases a name:value pair from the linkset's datastore.

When this function successfully removes a name:value pair a linkset_data event is triggered in all scripts running in the linkset with an action of LINKSETDATA_DELETE and the name parameter set to the name that was removed. The value parameter in the event is set to an empty string.

llLinksetDataDelete

Function: llLinksetDataDelete( string name );

Removes an unprotected name:value pair from the linkset's datastore. If the pair was created

• string name The key of the linkset name:value pair to be deleted.
All Issues ~ Search JIRA for related Bugs

llLinksetDataDeleteProtected

Function: llLinksetDataDeleteProtected( string name, string pass );

The llLinksetDataDeleteProtected function erases a protected name:value pair from the linkset's datastore.

• string name The key of the linkset name:value pair to be deleted.The key of the linkset name:value pair to be deleted.
• string pass A pass phrase previously used to protect the name:value pair.
All Issues ~ Search JIRA for related Bugs

Caveats

If the name does not exist or the pass does not match, no event is triggered.

All Issues ~ Search JIRA for related Bugs

Examples

Deep Notes

Search JIRA for related Issues

Signature

function void llLinksetDataDelete( string name );
function void llLinksetDataDeleteProtected( string name, string pass );