次の方法で共有


PrivacyFlags Enum

Definition

Set of flags describing the potential presence of information of a given privacy classification.

This enumeration supports a bitwise combination of its member values.

public enum class PrivacyFlags
[System.Flags]
public enum PrivacyFlags
[<System.Flags>]
type PrivacyFlags = 
Public Enum PrivacyFlags
Inheritance
PrivacyFlags
Attributes

Fields

MayContainPersonallyIdentifibleInformation 1

The log may contain information that may be able to be used to identify the individual or organization that is using the product. This flag is a warning to the Log system indicating that this log must be treated as if it contains Personally Identifiable Information (PII).

MayContainPrivateInformation 2

The log may contain private information. This is for information like a user's error messages. This information is not necessarily identifiable however may contain private information such as a customer's credit card number showing up in an exception message. This flag is a warning to the Log system indicating that this log must be treated as if it contains Private Information.

None 0

Blank flag meaning that this log will NEVER have any private information that can be described by the flags below.

Applies to