SecurityBrowsableAttribute Class
Applied to business class properties together with the Browsable(false) attribute. Unhides a hidden property in the Member Permissions configuration UI. The target property remains hidden in other places.
Namespace: DevExpress.ExpressApp.Security
Assembly: DevExpress.ExpressApp.v24.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Remarks
The following attributes combination makes the MyProperty property hidden everywhere except for the Members dropdown list in the Member Permissions tab.
[Browsable(false), SecurityBrowsable]
public virtual string MyProperty { get; set; }
See Also