19 lines
619 B
C#
19 lines
619 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Permissions
|
|
{
|
|
/// <summary>Specifies the base attribute class for code access security.</summary>
|
|
// Token: 0x020003CC RID: 972
|
|
[Token(Token = "0x20003CC")]
|
|
[Obsolete]
|
|
[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method)]
|
|
[ComVisible(true)]
|
|
[Obsolete("CAS support is not available with Silverlight applications.")]
|
|
[Serializable]
|
|
public abstract class CodeAccessSecurityAttribute : SecurityAttribute
|
|
{
|
|
}
|
|
}
|