ModRuntimeSecurityCheck Enumeration |
[Missing <summary> documentation for "T:UMod.Settings.ModRuntimeSecurityCheck"]
Namespace: UMod.Settings
public enum ModRuntimeSecurityCheck
Member name | Value | Description | |
---|---|---|---|
NoCodeValidation | 0 | No runtime code validation will be performed. This could allow potentially unsafe code to run. | |
OnlyValidateUncheckedCode | 1 | Only runtime code that has not been validated when building the mod will be checked. This may offer better load performance as the validation checks are performed at build time. Note that any code that was not checked at build time or has an invalid security hash will be validated at runtime. | |
AlwaysValidateCode | 2 | All mod code will be validated prior to loading regardless of whether it was valdiated at build time. |