+1  A: 

Hi Bogdan,

Unfortunately you cannot access anonymous object properties, because the compiler marks them as internal and the Silverlight security sandbox prevents you from accessing internal members.

What you can do currently is call the anonymous object ToString() method and extract the values from the string representation.

Hope this helps.

ligaz
A: 

I found a very good article that solved my problem. "This article explains why C# 4.0's dynamic features don't seem to work when evaluating instances of anonymous types returned from a public method of a different assembly." and thanks ligaz for a good starting point.

Anonymous Types are Internal, C# 4.0 & Silverlight

Bogdan