Sets the security for the specified object.

Namespace: Novalys.VisualGuard.Security
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2016.0.105.16 (2016.0.105.16)

Syntax

C#
public static void SetSecurity(
	Object target
)
Visual Basic
Public Shared Sub SetSecurity ( 
	target As Object
)

Parameters

target
Type: System..::..Object
The object for which you want to set the security

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.
For more information, you can consult:

How Visual Guard secures an application

How to apply security in your application

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptiontarget is null.

See Also