Class HideStringsAttribute
Instructs ArmDot to encrypt and hide strings used in the code.
Inherited Members
Namespace: ArmDot.Client
Assembly: ArmDot.Client.dll
Syntax
[AttributeUsage(AttributeTargets.Assembly|AttributeTargets.Module|AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Constructor|AttributeTargets.Method|AttributeTargets.Property|AttributeTargets.Field|AttributeTargets.Event|AttributeTargets.Interface|AttributeTargets.Delegate)]
public class HideStringsAttribute : Attribute
Constructors
HideStringsAttribute()
Instructs ArmDot to encrypt and hide strings used in the code.
Declaration
public HideStringsAttribute()
Properties
Enable
If Enable
is false, HideStringsAttribute
is not applied.
The default value is true.
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
bool |
Inherit
If Inherit
is true, and HideStringsAttribute
is applied to an assembly, ArmDot encrypts strings in all methods of the assembly.
If Inherit
is true, and HideStringsAttribute
is applied to a type, ArmDot encrypts strings used by the methods of the type, and of the nested types.
The default value is true.
Declaration
public bool Inherit { get; set; }
Property Value
Type | Description |
---|---|
bool |