Profileradd()
Ability to log extra data to the main profile data that is paged at the end of each request. This data will be in the '_extra' key. If this method is called multiple times, then the data is replaced with the last call
Usage
BOOLEAN = Profileradd(
data
)
Argument | Summary |
---|---|
data | Any type of data to add |
Calling
Supports named-parameter calling allowing you to use the function like:
Profileradd( data=? );
Supports passing parameters as a structure using ArgumentCollection:
Profileradd( ArgumentCollection={ data : ? } );