13 lines
416 B
C#
13 lines
416 B
C#
using System;
|
|
|
|
namespace System.Security
|
|
{
|
|
/// <summary>Identifies types or members as security-critical and safely accessible by transparent code.</summary>
|
|
// Token: 0x020005D5 RID: 1493
|
|
[AttributeUsage(AttributeTargets.All, AllowMultiple = false, Inherited = false)]
|
|
[MonoTODO("Only supported by the runtime when CoreCLR is enabled")]
|
|
public sealed class SecuritySafeCriticalAttribute : Attribute
|
|
{
|
|
}
|
|
}
|