Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SecurityAttribute.cs
Go to the documentation of this file.
2
3[Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId = "SYSLIB0003", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
4[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Constructor | AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
5public abstract class SecurityAttribute : Attribute
6{
7 public SecurityAction Action { get; set; }
8
9 public bool Unrestricted { get; set; }
10
14
15 public abstract IPermission? CreatePermission();
16}