Click here to Skip to main content
15,896,063 members
Articles / Programming Languages / C++/CLI

Code Access Security (CAS) and Design Patterns

Rate me:
Please Sign up or sign in to vote.
4.86/5 (63 votes)
10 May 200419 min read 158.9K   426   165  
Code Access Security (CAS) and Design Patterns
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    
  <system.web>
	
	<!-- 
	Full
	High 
	Medium 
	Low 
	Minimal 
	-->
	
	<!-- webservice by default only will work with medium policy level -->
	<trust level="Minimal_Web" originUrl="http://localhost/.*"/>
   
   <customErrors mode="Off" />
   
   <compilation defaultLanguage="vb" debug="false">
	
	<assemblies>
		<add assembly="WrapperAspNetCAS,Version=1.0.0.1,Culture=neutral,PublicKeyToken=b9a6e523e35f0532"/>
	</assemblies> 
  </compilation>
  </system.web>

</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
First of all, I am a Christian, a father of two beautiful children, husband to a beautiful wife, and a Software Architect/ Mentor. Most of my time I spend in Charlotte North Carolina developing software or writing technical material for my Blog www.ipattern.com and custom courseware, but recently I am traveling across the globe evangelizing Microsoft SharePoint 2003 Portal product.
My wife (Jenny) is my editor in chief for all of my writings.
I believe that Design Patterns are the way to go when it comes to developing the applications and I preach this on my blog, so I hope to share some of this material with readers of CodeProject.com.

Happy reading!

Comments and Discussions