Difference between revisions of "LlLinksetDataRead/ja"

From Second Life Wiki
Jump to navigation Jump to search
m
m
 
Line 2: Line 2:
|default={{{default|}}}
|default={{{default|}}}
|inject-2=
|inject-2=
|summary=The '''llLinksetDataRead''' and '''llLinksetDataReadProtected''' functions return the '''value''' in the linkset's datastore for the provided {{LSLP|name}}. If {{LSLP|name}} is not found, these functions return an empty string.
|summary= '''llLinksetDataRead''' および '''llLinksetDataReadProtected''' 関数は、指定された {{LSLP|name}} の linkset のデータストア内の '''value''' を返します。{{LSLP|name}} が見つからない場合、これらの関数は空の文字列を返します。
|func=llLinksetDataRead|sort={{{sort|LinksetDataRead}}}
|func=llLinksetDataRead|sort={{{sort|LinksetDataRead}}}
|head={{LSL Function/Head
|head={{LSL Function/Head
|func_id=|func_sleep=0|func_energy=10.0
|func_id=|func_sleep=0|func_energy=10.0
|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=読み取る linkset '''name:value''' ペアのキー。
|return_type=string
|return_type=string
|return_text='''value''' corresponding to {{LSLP|name}}
|return_text={{LSLP|name}} に対応する '''value'''
|func_desc=Reads an unprotected '''name:value''' pair from the linkset's datastore.
|func_desc=linkset のデータストアから未保護の '''name:value''' ペアを読み取ります。
|caveats=If the {{LSLP|name}} is missing, or the '''name:value''' pair was created with [[llLinksetDataWriteProtected]] this function returns an empty string.
|caveats=もし {{LSLP|name}} が見つからないか、'''name:value''' ペアが [[llLinksetDataWriteProtected]] で作成された場合、この関数は空の文字列を返します。
}}{{LSL_Function/Head
}}{{LSL_Function/Head
|func_sleep=0.0|func_energy=10.0
|func_sleep=0.0|func_energy=10.0
|func=llLinksetDataReadProtected
|func=llLinksetDataReadProtected
|p1_type=string|p1_name=name|p1_desc=The '''key''' of the '''name:value''' pair to be read.
|p1_type=string|p1_name=name
|p2_type=string|p2_name=pass|p2_desc=The pass phrase protecting the '''name:value''' pair.
|p2_type=string|p2_name=pass|p2_desc='''name:value''' ペアを保護するパスフレーズ。
|return_type=string
|return_type=string
|return_text='''value''' corresponding to {{LSLP|name}}
|return_text={{LSLP|name}} に対応する '''value'''
|func_footnote
|func_footnote
|func_desc=Reads a protected '''name:value''' pair from the datastore.
|func_desc=データストアから保護された '''name:value''' ペアを読み取ります。
|func_footnote
|func_footnote
|caveats=If the {{LSLP|pass}} parameter does not match, this function returns an empty string.
|caveats=もし {{LSLP|pass}} パラメータが一致しない場合、この関数は空の文字列を返します。
|spec
|spec
}}
}}

Latest revision as of 12:50, 22 November 2023

Summary

Summary: llLinksetDataRead, llLinksetDataReadProtected

llLinksetDataRead および llLinksetDataReadProtected 関数は、指定された name の linkset のデータストア内の value を返します。name が見つからない場合、これらの関数は空の文字列を返します。

llLinksetDataRead

Function: string llLinksetDataRead( string name );

linkset のデータストアから未保護の name:value ペアを読み取ります。
Returns a string name に対応する value

• string name 読み取る linkset の name:value ペアのキー。
Caveats

もし name が見つからないか、name:value ペアが llLinksetDataWriteProtected で作成された場合、この関数は空の文字列を返します。

All Issues ~ Search JIRA for related Bugs

llLinksetDataReadProtected

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

データストアから保護された name:value ペアを読み取ります。
Returns a string name に対応する value

• string name 読み取る linkset の name:value ペアのキー。
• string pass name:value ペアを保護するパスフレーズ。
Caveats

もし pass パラメータが一致しない場合、この関数は空の文字列を返します。

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 );