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 = 0The MAC address is redacted.
Example: "00:B0:D0:63:C2:26" becomes "*****************"
FixedLength = 1The MAC address is redacted with a fixed length.
Example: "00:B0:D0:63:C2:26" becomes "********"
Full = 2The MAC address is redacted, preserving symbols.
Example: "00:B0:D0:63:C2:26" becomes ":::::"
ShowLastByte = 3The last byte of the MAC address is shown.
Example: "00:B0:D0:63:C2:26" becomes "::::**:26"