XafApplication.Security Property
Provides access to the Security Strategy used in the application.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v20.2.dll
Declaration
Property Value
Type | Description |
---|---|
DevExpress.ExpressApp.Security.ISecurityStrategyBase | An object that is the ISecurityStrategyBase Security Strategy. |
Remarks
If you need to configure a Security System via built-in classes, use the Application Designer. To create a custom Security Strategy or Authentication Type, set the Security property in code:
static class Program {
// ...
public static void Main() {
// ...
MySolutionWindowsFormsApplication application = new MySolutionWindowsFormsApplication();
application.Security = new MySecurityStrategy<User, Role>(new MyAuthenticationStrategy<User,
AuthenticationStandardLogonParameters>())
// ...
application.Setup();
application.Start();
// ...
}
}
For details on the Security System supplied by XAF, refer to the Security System Overview topic.
See Also
Feedback