Skip to main content
All docs
V18.2

CustomAssemblyLoadingEventArgs.Handled Property

Specifies whether or not the corresponding event was handled.

Namespace: DevExpress.DataAccess

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public bool Handled { get; set; }

Property Value

Type Description
Boolean

true if the event was handled; otherwise, false.

Remarks

Because the CustomAssemblyLoadingEventArgs class has become obsolete, the Handled property should no longer be used.

To permit loading a specific assembly, handle the EFDataSource.BeforeLoadCustomAssembly event (or static EFDataSource.BeforeLoadCustomAssemblyGlobal event) and specify the properties of the BeforeLoadCustomAssemblyEventArgs object.

An unauthorized attempt to load a custom assembly will result in throwing a CustomAssemblyLoadingProhibitedException.

See Also