GroupClaim.IsSensitive Property
Gets or sets a Boolean to indicate if the contents of this GroupClaim can be audited or not.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public bool IsSensitive { get; set; }
public:
property bool IsSensitive {
bool get();
void set(bool value);
}
member IsSensitive : bool with get, set
Public Property IsSensitive As Boolean
Property Value
Type: System.Boolean
true if there is sensitive information; otherwise, false.
Remarks
Some claims may be designated as sensitive. This means that the claim value will not be audited when the claim is produced or transformed. The audit will indicate the name of the claim but the value of the claim will be omitted. An example of a sensitive claim would be Social Security number.
See Also
GroupClaim Class
System.Web.Security.SingleSignOn Namespace
Return to top