using System; using System.Runtime.InteropServices; namespace System.Security.Permissions { /// Specifies the base attribute class for code access security. // Token: 0x0200053D RID: 1341 [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method, AllowMultiple = true, Inherited = false)] [Obsolete("CAS support is not available with Silverlight applications.")] [ComVisible(true)] [Serializable] public abstract class CodeAccessSecurityAttribute : SecurityAttribute { /// Initializes a new instance of with the specified . /// One of the values. // Token: 0x06003117 RID: 12567 RVA: 0x000A8BB4 File Offset: 0x000A6DB4 protected CodeAccessSecurityAttribute(SecurityAction action) : base(action) { } } }