Skip to main content
A newer version of this page is available.
All docs
V19.1

SecurityStrategy.GetSecuredTypes() Method

Returns a list of business classes that can be secured.

Namespace: DevExpress.ExpressApp.Security

Assembly: DevExpress.ExpressApp.Security.v19.1.dll

Declaration

public static IEnumerable<Type> GetSecuredTypes()

Returns

Type Description
IEnumerable<Type>

An IEnumerable<Type> list of secured types.

Remarks

By default, returns all persistent types (entries from the XafTypesInfo.Instance.PersistentTypes collection which have the ITypeInfo.IsPersistent property set to true) except for the XPObjectType and ModuleInfo types. You can add extra types (e.g., non-persistent types via the SecurityStrategy.AdditionalSecuredTypes list). To determine whether a particular type is secured, use the SecurityStrategy.IsSecuredType method.

See Also