I'm making use of a TextMultiValue property, but I'm frequently getting 2 errors when I execute $Context.TargetObject.GetEx("Adm-CustomAttributeMultiValue2"). These actions are taking place on a user, the user can only execute the action on themselves but I'm always seeing the following to errors:
- Exception calling "GetEx" with "1" argument(s): "The 'Adm-CustomAttributeTextMultiValue2' property cannot be found in the cache." Stack trace: at <ScriptBlock>, <No file>: line 34
- Cannot write to a closed TextWriter.
Line causing the issue:
$IPs = $Context.TargetObject.GetEx("Adm-CustomAttributeTextMultiValue2")
I'm seeing "Cannot write to a closed TextWriter" other times also, can I get any insight on what would cause that?
Thanks!