I am trying to get content of a Job Variable using the API in C#, but it seems to be encrypted...
JobClass MyJob = s.Jobs.GetJobByName("MyJobName");
var TimeFunctiona = MyJob.GetJobVariable("myjobvar").ValueObject;
gives a byte array of the correct length, but I can not figure out how to convert the byte array to the correct variable content. It seem to be encoded.
How can I decode this ?
Regards
/Klaus