14 lines
387 B
C#
14 lines
387 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Security
|
|
{
|
|
/// <summary>Marks modules containing unverifiable code. This class cannot be inherited.</summary>
|
|
// Token: 0x020005DB RID: 1499
|
|
[AttributeUsage(AttributeTargets.Module, AllowMultiple = true, Inherited = false)]
|
|
[ComVisible(true)]
|
|
public sealed class UnverifiableCodeAttribute : Attribute
|
|
{
|
|
}
|
|
}
|