Difference between revisions of "LlLinksetDataRead"

From Second Life Wiki
Jump to navigation Jump to search
m (llLinksetDataRead() should return a string)
Line 8: Line 8:
|func=llLinksetDataRead
|func=llLinksetDataRead
|p1_type=string|p1_name=name|p1_desc=The key of the linkset '''name:value''' pair to be read.
|p1_type=string|p1_name=name|p1_desc=The key of the linkset '''name:value''' pair to be read.
|func_desc=Reads an unprotected '''name:value''' pair from the linkset's datastore.  
|return_type=string
|return_text='''value''' corresponding to {{LSLP|name}}
|func_desc=Reads an unprotected '''name:value''' pair from the linkset's datastore.
|caveats=If the {{LSLP|name}} is missing, or the '''name:value''' pair was created with [[llLinksetDataWriteProtected]] this function returns an empty string.
|caveats=If the {{LSLP|name}} is missing, or the '''name:value''' pair was created with [[llLinksetDataWriteProtected]] this function returns an empty string.
}}{{LSL_Function/Head
}}{{LSL_Function/Head

Revision as of 19:38, 22 October 2022

Summary

Summary: llLinksetDataRead, llLinksetDataReadProtected

The llLinksetDataRead and llLinksetDataReadProtected functions return the value in the linkset's datastore for the provided name. If name is not found, these functions return an empty string.

llLinksetDataRead

Function: string llLinksetDataRead( string name );

Reads an unprotected name:value pair from the linkset's datastore.
Returns a string value corresponding to name

• string name The key of the linkset name:value pair to be read.
Caveats

If the name is missing, or the name:value pair was created with llLinksetDataWriteProtected this function returns an empty string.

All Issues ~ Search JIRA for related Bugs

llLinksetDataReadProtected

Function: string llLinksetDataReadProtected( string name, string pass );

Reads a protected name:value pair from the datastore.
Returns a string value corresponding to name

• string name The key of the linkset name:value pair to be read.The key of the name:value pair to be read.
• string pass The pass phrase protecting the name:value pair.
Caveats

If the pass parameter does not match, this function returns an empty string.

All Issues ~ Search JIRA for related Bugs

Examples

Deep Notes

Search JIRA for related Issues

Signature

function string llLinksetDataRead( string name );
function string llLinksetDataReadProtected( string name, string pass );