Using the .NET Framework security system - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T11:34:55Z http://stackoverflow.com/feeds/question/169951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/169951/using-the-net-framework-security-system 2 Using the .NET Framework security system Yuval 2008-10-04T08:01:35Z 2008-10-04T08:51:39Z <p>I was wondering - do any of you actually use the various classes in the System.Security.Permissions namespace? I mainly develop desktop/server-side components (i.e., no web) and the general assumption is that FullTrust is always available and no testing is performed on environments for which this is not the case. Apart from MS source code (EnterpriseLibrary and such), I have yet to see actual, in-use source code that makes use of said constructs.</p> <p>Is this prevalent, or are we the exception? I know, of course, that not doing this kind of testing is a problem on our side...</p> http://stackoverflow.com/questions/169951/using-the-net-framework-security-system/169960#169960 1 Answer by Brad Wilson for Using the .NET Framework security system Brad Wilson 2008-10-04T08:11:33Z 2008-10-04T08:11:33Z <p>If you deploy your desktop applications with ClickOnce, then the security sandbox can come into play.</p> http://stackoverflow.com/questions/169951/using-the-net-framework-security-system/169968#169968 1 Answer by alexmac for Using the .NET Framework security system alexmac 2008-10-04T08:19:19Z 2008-10-04T08:19:19Z <p>I have never seen anyone make use of the permit, assert functionality. </p> <p>I suspect a number of developers are not actually aware of the functionality. </p> <p>I think it could be useful to restrict calls to dangerous functions.</p> <p>Its going to depend on what you are doing but who wants to make a deployment more complex than it already is?</p> http://stackoverflow.com/questions/169951/using-the-net-framework-security-system/169988#169988 3 Answer by Mark Cidade for Using the .NET Framework security system Mark Cidade 2008-10-04T08:32:20Z 2008-10-04T08:32:20Z <p>The .NET code access security is more relevant when users run code directly off a server over the internet, in which case they can't necessarily trust it to automatically do things such as access the file system. I don't know of anyone who makes their code available like that, though.</p> http://stackoverflow.com/questions/169951/using-the-net-framework-security-system/170007#170007 3 Answer by Marc Gravell for Using the .NET Framework security system Marc Gravell 2008-10-04T08:51:39Z 2008-10-04T08:51:39Z <p>I make lots of use of PrincipalPermissionAttribute to demand the user has necessary access rights (using roles) from the Thread's Principal - saves a lot of manual checking in my business code (obviously the UI should check too and disable buttons etc - this is just the double-check at the back-end).</p> <p>I find Principal-based security to be very versatily, especially with a custom Principal. But I don't use the CAS stuff.</p>