Click or drag to resize

VGSecurityManagerSetSecurity Method (Object, Type)

Sets the security corresponding to the specified type for the specified object.

Namespace:  Novalys.VisualGuard.Security
Assembly:  Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2019.1.831.19 (2019.1.0831.19)
Syntax
public static void SetSecurity(
	Object target,
	Type type
)

Parameters

target
Type: SystemObject
The object for which you want to set the security
type
Type: SystemType
a Type object specifying the type for which the actions are targeted. This type must be assignable from the type of the specified object.
Exceptions
ExceptionCondition
ArgumentNullExceptiontarget or type is null.
ArgumentExceptionthe type of target is not an instance of a class derived from type.
Remarks
You need to call this method only once for each object instance.In most of case, this method must be called at the end of constructor of the object (after the call of InitializeComponent method for components). This method registers the object in Visual Guard then it executes the actions defined for this target to be executed when the security is loaded.If some actions must be executed on other events, It handles these events. The actions associated to these events will be executed each time the events are raised.You can use this method when you define actions for an ancestor class. By default Visual Guard sets the security only for the type of the object and not for its ancestor.
For more information, you can consult:

How Visual Guard secures an application

How to apply security in your application

See Also