CustomAttributeInfoDataIsSecure Property |
Gets or sets a value indicating whether this custom attribute is secure.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(EmitDefaultValue = false, Name = "isSecure")]
public bool IsSecure { get; set; }
<DataMemberAttribute(EmitDefaultValue := false, Name := "isSecure")>
Public Property IsSecure As Boolean
Get
Set
public:
[DataMemberAttribute(EmitDefaultValue = false, Name = L"isSecure")]
property bool IsSecure {
bool get ();
void set (bool value);
}
[<DataMemberAttribute(EmitDefaultValue = false, Name = "isSecure")>]
member IsSecure : bool with get, set
Property Value
Type:
BooleanRemarks
A value of
indicates that the value of the attribute may contain
sensitive information, and should not be accessible to remote callers (e.g. through a
REST API), unless for administrative purposes.
Furthermore, tenant administrators are not able to view the values of secure custom attributes
when retrieving accounts or groups.
See Also