Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ObfuscationAttribute.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3[AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Interface | AttributeTargets.Parameter | AttributeTargets.Delegate, AllowMultiple = true, Inherited = false)]
4public sealed class ObfuscationAttribute : Attribute
5{
6 public bool StripAfterObfuscation { get; set; } = true;
7
8
9 public bool Exclude { get; set; } = true;
10
11
12 public bool ApplyToMembers { get; set; } = true;
13
14
15 public string? Feature { get; set; } = "all";
16
17}