ScriptState is an object with arbitrary fields that stores values between calls and between InTrust agent restarts. This object is available when you use the ECMAScript or JScript object model.
The ScriptState object can store only the following data types:
Strings
Numeric types
Dates
Arrays of all of the above
GlobalState is a similar object that can store any data type, but is available only in the JScript object model.
In the following two examples, every fifth event is matched.
function OnEvent( e )
{
if (ScriptState.count == 5 )
{
match( e );
ScriptState.count = 0;
}
else
{
ScriptState.count++;
}
}
function OnEvent( e )
{
if (ScriptState.Item("count") == 5 )
{
match( e );
ScriptState.Item("count") = 0;
}
else
{
ScriptState.Item("count")++;
}
}
© ALL RIGHTS RESERVED. 이용 약관 개인정보 보호정책 Cookie Preference Center