Enum LockMemoryPolicy
How to attempt memory locking. Used in Create(int, SecureArrayCall?, LockMemoryPolicy).
Namespace: Isopoh.Cryptography.SecureArray
Assembly: Isopoh.Cryptography.SecureArray.dll
Syntax
public enum LockMemoryPolicy
Fields
| Name | Description |
|---|---|
| BestEffort | Attempt to lock buffers into RAM, but allow non-locked memory if the operating system doesn't allow the memory to be locked. |
| Enforce | Throw LockFailException exception on failure to lock buffers into RAM. |
| None | Do not attempt to lock buffers into RAM. |