Enum IPv6AddressRedaction
- Namespace
 - ZeroRedact
 
- Assembly
 - ZeroRedact.dll
 
Defines the different types of redactions that can be applied to an IPv6 address.
public enum IPv6AddressRedaction
  Fields
All = 0The IPv6 address is redacted.
Example: "2001:0000:130F:0000:0000:09C0:876A:130B" becomes "***************************************"
FixedLength = 1The IPv4 address is redacted with a fixed length.
Example: "2001:0000:130F:0000:0000:09C0:876A:130B" becomes "********"
Full = 2The IPv4 address is redacted, preserving symbols.
Example: "2001:0000:130F:0000:0000:09C0:876A:130B" becomes ":::::::"
ShowLastQuartet = 3The last quartet of the IPv6 address are shown.
Example: "2001:0000:130F:0000:0000:09C0:876A:130B" becomes "::::::****:130B"