1

Recently I get to touch with partial trust application. Could you explain in some common words? Or give me an example? When should I think about this issue? I am trying to find some documents in the web, but I found very little. So I come to think maybe this is not used often in today's .net programming. Is this true?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Robin Sun
  • 1,352
  • 3
  • 20
  • 45

1 Answers1

0

.NET used a security model called code access security.

Partial Trust Application.

Starting with the .NET Framework version 3.5, partially trusted callers can access public types and methods implemented in System.ServiceModel, System.Runtime.Serialization, and System.ServiceModel.Web. This section describes supported scenarios for using Windows Communication Foundation (WCF) within a partially trusted application as well as the limited subset of WCF functionality available to applications running with reduced code access security (CAS) permissions.

Do check this Thread and Programming for Partial Trust

Community
  • 1
  • 1
Rahul Tripathi
  • 168,305
  • 31
  • 280
  • 331