How can I read and convert to text file this byte[] value?
It is described in documentation like DataType="base64Binary" but I cant convert it to human readable format...
I have tried:
System.Text.Encoding.ASCII.GetString(gadsContent.Value)
and got
?\b\0\0\0\0\0\0\0?ZY??Zr~?W5vp??\0?t??6@\b\t???pL\bm\b???8?????/^~????L?/Q@Q??????...
Convert.ToBase64String(gadsContent.Value)
and got
H4sIAAAAAAAAANVaWZPiWnJ+51cQNRETdnCrtAAC9XT1jDZACAm0guRwTAhtCLSAFrQ4/OCxw3/AL15+hp8c9ttM/y8fUUBR273d99qecEd3FTonM09uJzM/0Z9/W4...
Update:
Now I read that this has compression GZIP... How can I decompress and decode it ?