Can you start an outside process with Silverlight?

后端 未结 5 2063
有刺的猬
有刺的猬 2020-12-06 12:34

The System.Diagnostics assembly is part of the Silverlight CLR framework, but it only includes classes related to debugging, the Process class is not available. Is there any

5条回答
  •  借酒劲吻你
    2020-12-06 13:23

    If you are running your application either in the browser or as a standard out of browser application, being able to start another process would break the Silverlight model, allowing your application access to the machine outside the browser sandbox.

    A full trust application will be able to do this.

    Why do you want to start another process?

提交回复
热议问题