Enum IPv4AddressRedaction
- Namespace
- ZeroRedact
- Assembly
- ZeroRedact.dll
Defines the different types of redactions that can be applied to an IPv4 address.
public enum IPv4AddressRedaction
Fields
All = 0
The IPv4 address is redacted.
Example: "192.0.2.146" becomes "***********"
FixedLength = 1
The IPv4 address is redacted with a fixed length.
Example: "192.0.2.146" becomes "********"
Full = 2
The IPv4 address is redacted, preserving symbols.
Example: "192.0.2.146" becomes "..."
ShowLastOctet = 3
The last octet of the IPv4 address are shown.
Example: "192.0.2.146" becomes "**..*.146"