Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Emmanuel S
on
I think i've got the same problem on a lot of my scripts ....
To understand, you replace
IEntitySessionResult result = (IEntitySessionResult) value;


by

var result = value as IEntitySessionResult;
if (result == null)
{
    return "";
}

??