Class | Description | |
---|---|---|
![]() | Redact | Helper class for redacting sensitive data. |
![]() | RedactionStrategies | Collection of the redaction strategies. The redaction (censoring) can be applied to log message parameters, exception messages, and other sensitive data. To use a strategy wrap the value with RedactionWrapper<T>, e.g. Utils.LogDebug("The password is {0}", RedactionWrapper.Create(password)); Utils.LogError("An exception occurred: {0}", RedactionWrapper.Create(exception)); |
![]() | RedactionWrapper<T> | Wraps the supplied value and applies the redaction strategy when converting to string. |