Enum MACAddressRedaction
- Namespace
- ZeroRedact
- Assembly
- ZeroRedact.dll
Defines the different types of redactions that can be applied to a MAC address.
public enum MACAddressRedaction
Fields
All = 0
The MAC address is redacted.
Example: "00:B0:D0:63:C2:26" becomes "*****************"
FixedLength = 1
The MAC address is redacted with a fixed length.
Example: "00:B0:D0:63:C2:26" becomes "********"
Full = 2
The MAC address is redacted, preserving symbols.
Example: "00:B0:D0:63:C2:26" becomes ":::::"
ShowLastByte = 3
The last byte of the MAC address is shown.
Example: "00:B0:D0:63:C2:26" becomes "::::**:26"