8

Is it possible to programmatically from a silverlight app to get the runtime information of silverlight?

Note: that does not include making a call out to javascript

AwkwardCoder
  • 24,893
  • 27
  • 82
  • 152

1 Answers1

7

If you want to get the runtime & build version for a Silverlight app from inside the app you can use the Environment.Version & Deployment.RuntimeVersion

icebat
  • 4,696
  • 4
  • 22
  • 36
AwkwardCoder
  • 24,893
  • 27
  • 82
  • 152
  • 1
    My guess: Deployment.RuntimeVersion is the version that you use to build the Silverlight application (.dll’s in the .xap). You can find this version in the AppManifest.xaml – Peter Gfader Mar 22 '11 at 01:20